ad계정목록 csv내보내기 기능 추가

This commit is contained in:
chi
2021-05-20 10:20:29 +09:00
parent b3228bbdb6
commit 478896089f
30 changed files with 3427 additions and 595 deletions

View 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_;
}
}
}
}