- 툴바 아이콘 지정

- 메뉴바 테마 적용
- 메뉴바 기능 연결
- 파일 로딩 후 기능들 연결
This commit is contained in:
2017-06-20 03:52:08 +09:00
parent 7be92b315a
commit 760ce6abc2
23 changed files with 6673 additions and 315 deletions

View File

@@ -32,8 +32,7 @@
System.Windows.Forms.ListViewGroup listViewGroup2 = new System.Windows.Forms.ListViewGroup("Nonactive Columns", System.Windows.Forms.HorizontalAlignment.Left);
this.dgvData = new System.Windows.Forms.DataGridView();
this.lvColumn = new System.Windows.Forms.ListView();
this.lvchCheck = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.lvchColumn = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.lvchColumns = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
this.SuspendLayout();
//
@@ -59,8 +58,7 @@
| System.Windows.Forms.AnchorStyles.Right)));
this.lvColumn.CheckBoxes = true;
this.lvColumn.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.lvchCheck,
this.lvchColumn});
this.lvchColumns});
this.lvColumn.FullRowSelect = true;
listViewGroup1.Header = "Active Columns";
listViewGroup1.Name = "lvgActiveColumn";
@@ -79,15 +77,10 @@
this.lvColumn.View = System.Windows.Forms.View.Details;
this.lvColumn.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.lvColumn_ItemChecked);
//
// lvchCheck
// lvchColumns
//
this.lvchCheck.Text = "";
this.lvchCheck.Width = 25;
//
// lvchColumn
//
this.lvchColumn.Text = "Columns";
this.lvchColumn.Width = 200;
this.lvchColumns.Text = "Columns";
this.lvchColumns.Width = 175;
//
// PanelResult
//
@@ -111,7 +104,6 @@
private System.Windows.Forms.DataGridView dgvData;
private System.Windows.Forms.ListView lvColumn;
private System.Windows.Forms.ColumnHeader lvchColumn;
private System.Windows.Forms.ColumnHeader lvchCheck;
private System.Windows.Forms.ColumnHeader lvchColumns;
}
}