16 lines
		
	
	
		
			226 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			226 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| //忽略没有注释警告
 | |
| #pragma warning disable 1591
 | |
| namespace MGdu.WinFormUI
 | |
| {
 | |
| 
 | |
|     public enum RectangleGlassPosition
 | |
|     {
 | |
|         Fill,
 | |
|         Top,
 | |
|         Right,
 | |
|         Left,
 | |
|         Bottom,
 | |
|     }
 | |
| }
 |