ad계정목록 csv내보내기 기능 추가
This commit is contained in:
		
							
								
								
									
										43
									
								
								SubProject/CMSControl/EventArgs.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								SubProject/CMSControl/EventArgs.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,43 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| using System.Windows.Forms; | ||||
|  | ||||
| namespace CMSControl | ||||
| { | ||||
|     public partial class cmsview | ||||
|     { | ||||
|         public enum eClickArea | ||||
|         { | ||||
|             Normal = 0, | ||||
|             No, | ||||
|             Title, | ||||
|             Content, | ||||
|         } | ||||
|         public class ItemClickEvent : EventArgs | ||||
|         { | ||||
|             public System.Drawing.Point Point { get; set; } | ||||
|             public int Index { get; set; } | ||||
|             public MouseButtons Button; | ||||
|             public eClickArea Area; | ||||
|             public ItemClickEvent(System.Drawing.Point point_, int index_,MouseButtons button_,eClickArea area_) | ||||
|             { | ||||
|                 this.Point = point_; | ||||
|                 this.Index = index_; | ||||
|                 this.Button = button_; | ||||
|                 this.Area = area_; | ||||
|             } | ||||
|         } | ||||
|         public class MessageEvent : EventArgs | ||||
|         { | ||||
|             public string Message { get; set; } | ||||
|             public Boolean isError { get; set; } | ||||
|             public MessageEvent(Boolean isError_,string Message_) | ||||
|             { | ||||
|                 this.isError = isError_; | ||||
|                 this.Message = Message_; | ||||
|             } | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 chi
					chi