MainForm.Designer.cs (16503B)
1 namespace SilkypixFileMover 2 { 3 partial class MainForm 4 { 5 /// <summary> 6 /// Required designer variable. 7 /// </summary> 8 private System.ComponentModel.IContainer components = null; 9 10 /// <summary> 11 /// Clean up any resources being used. 12 /// </summary> 13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 14 protected override void Dispose(bool disposing) 15 { 16 if (disposing && (components != null)) 17 { 18 components.Dispose(); 19 } 20 base.Dispose(disposing); 21 } 22 23 #region Windows Form Designer generated code 24 25 /// <summary> 26 /// Required method for Designer support - do not modify 27 /// the contents of this method with the code editor. 28 /// </summary> 29 private void InitializeComponent() 30 { 31 this.components = new System.ComponentModel.Container(); 32 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); 33 this.btnAddFile = new System.Windows.Forms.Button(); 34 this.btnSelectDestination = new System.Windows.Forms.Button(); 35 this.lblSource = new System.Windows.Forms.Label(); 36 this.statusBar = new System.Windows.Forms.StatusStrip(); 37 this.statusLabel = new System.Windows.Forms.ToolStripStatusLabel(); 38 this.statusCounter = new System.Windows.Forms.ToolStripStatusLabel(); 39 this.statusProgress = new System.Windows.Forms.ToolStripProgressBar(); 40 this.btnMove = new System.Windows.Forms.Button(); 41 this.lblDest = new System.Windows.Forms.Label(); 42 this.lviFiles = new System.Windows.Forms.ListView(); 43 this.colFileName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 44 this.colSize = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 45 this.colTimestamp = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader())); 46 this.btnDelete = new System.Windows.Forms.Button(); 47 this.btnDirUp = new System.Windows.Forms.Button(); 48 this.btnRemoveFile = new System.Windows.Forms.Button(); 49 this.cboHistory = new System.Windows.Forms.ComboBox(); 50 this.bgwWorker = new System.ComponentModel.BackgroundWorker(); 51 this.btnAbout = new System.Windows.Forms.Button(); 52 this.toolTip = new System.Windows.Forms.ToolTip(this.components); 53 this.btnSettings = new System.Windows.Forms.Button(); 54 this.trayIconContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components); 55 this.toogleWindowItem = new System.Windows.Forms.ToolStripMenuItem(); 56 this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); 57 this.beendenItem = new System.Windows.Forms.ToolStripMenuItem(); 58 this.trayIcon = new System.Windows.Forms.NotifyIcon(this.components); 59 this.statusBar.SuspendLayout(); 60 this.trayIconContextMenu.SuspendLayout(); 61 this.SuspendLayout(); 62 // 63 // btnAddFile 64 // 65 resources.ApplyResources(this.btnAddFile, "btnAddFile"); 66 this.btnAddFile.Name = "btnAddFile"; 67 this.toolTip.SetToolTip(this.btnAddFile, resources.GetString("btnAddFile.ToolTip")); 68 this.btnAddFile.UseVisualStyleBackColor = true; 69 this.btnAddFile.Click += new System.EventHandler(this.btnAddFile_Click); 70 // 71 // btnSelectDestination 72 // 73 resources.ApplyResources(this.btnSelectDestination, "btnSelectDestination"); 74 this.btnSelectDestination.Name = "btnSelectDestination"; 75 this.toolTip.SetToolTip(this.btnSelectDestination, resources.GetString("btnSelectDestination.ToolTip")); 76 this.btnSelectDestination.UseVisualStyleBackColor = true; 77 this.btnSelectDestination.Click += new System.EventHandler(this.btnSelectDestination_Click); 78 // 79 // lblSource 80 // 81 resources.ApplyResources(this.lblSource, "lblSource"); 82 this.lblSource.Name = "lblSource"; 83 // 84 // statusBar 85 // 86 this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 87 this.statusLabel, 88 this.statusCounter, 89 this.statusProgress}); 90 resources.ApplyResources(this.statusBar, "statusBar"); 91 this.statusBar.Name = "statusBar"; 92 this.statusBar.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional; 93 this.statusBar.SizingGrip = false; 94 // 95 // statusLabel 96 // 97 this.statusLabel.Name = "statusLabel"; 98 resources.ApplyResources(this.statusLabel, "statusLabel"); 99 this.statusLabel.Spring = true; 100 // 101 // statusCounter 102 // 103 this.statusCounter.BorderSides = System.Windows.Forms.ToolStripStatusLabelBorderSides.Left; 104 this.statusCounter.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenInner; 105 this.statusCounter.Name = "statusCounter"; 106 resources.ApplyResources(this.statusCounter, "statusCounter"); 107 // 108 // statusProgress 109 // 110 this.statusProgress.Name = "statusProgress"; 111 resources.ApplyResources(this.statusProgress, "statusProgress"); 112 // 113 // btnMove 114 // 115 resources.ApplyResources(this.btnMove, "btnMove"); 116 this.btnMove.Name = "btnMove"; 117 this.toolTip.SetToolTip(this.btnMove, resources.GetString("btnMove.ToolTip")); 118 this.btnMove.UseVisualStyleBackColor = true; 119 this.btnMove.Click += new System.EventHandler(this.btnMove_Click); 120 // 121 // lblDest 122 // 123 resources.ApplyResources(this.lblDest, "lblDest"); 124 this.lblDest.Name = "lblDest"; 125 // 126 // lviFiles 127 // 128 this.lviFiles.AllowDrop = true; 129 resources.ApplyResources(this.lviFiles, "lviFiles"); 130 this.lviFiles.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { 131 this.colFileName, 132 this.colSize, 133 this.colTimestamp}); 134 this.lviFiles.FullRowSelect = true; 135 this.lviFiles.Name = "lviFiles"; 136 this.lviFiles.Sorting = System.Windows.Forms.SortOrder.Ascending; 137 this.lviFiles.UseCompatibleStateImageBehavior = false; 138 this.lviFiles.View = System.Windows.Forms.View.Details; 139 this.lviFiles.SelectedIndexChanged += new System.EventHandler(this.lviFiles_SelectedIndexChanged); 140 this.lviFiles.DragDrop += new System.Windows.Forms.DragEventHandler(this.lviFiles_DragDrop); 141 this.lviFiles.DragEnter += new System.Windows.Forms.DragEventHandler(this.lviFiles_DragEnter); 142 this.lviFiles.KeyUp += new System.Windows.Forms.KeyEventHandler(this.lviFiles_KeyUp); 143 this.lviFiles.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.lviFiles_MouseDoubleClick); 144 // 145 // colFileName 146 // 147 resources.ApplyResources(this.colFileName, "colFileName"); 148 // 149 // colSize 150 // 151 resources.ApplyResources(this.colSize, "colSize"); 152 // 153 // colTimestamp 154 // 155 resources.ApplyResources(this.colTimestamp, "colTimestamp"); 156 // 157 // btnDelete 158 // 159 resources.ApplyResources(this.btnDelete, "btnDelete"); 160 this.btnDelete.Name = "btnDelete"; 161 this.toolTip.SetToolTip(this.btnDelete, resources.GetString("btnDelete.ToolTip")); 162 this.btnDelete.UseVisualStyleBackColor = true; 163 this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); 164 // 165 // btnDirUp 166 // 167 resources.ApplyResources(this.btnDirUp, "btnDirUp"); 168 this.btnDirUp.Name = "btnDirUp"; 169 this.toolTip.SetToolTip(this.btnDirUp, resources.GetString("btnDirUp.ToolTip")); 170 this.btnDirUp.UseVisualStyleBackColor = true; 171 this.btnDirUp.Click += new System.EventHandler(this.btnDirUp_Click); 172 // 173 // btnRemoveFile 174 // 175 resources.ApplyResources(this.btnRemoveFile, "btnRemoveFile"); 176 this.btnRemoveFile.Name = "btnRemoveFile"; 177 this.toolTip.SetToolTip(this.btnRemoveFile, resources.GetString("btnRemoveFile.ToolTip")); 178 this.btnRemoveFile.UseCompatibleTextRendering = true; 179 this.btnRemoveFile.UseVisualStyleBackColor = true; 180 this.btnRemoveFile.Click += new System.EventHandler(this.btnRemoveFile_Click); 181 // 182 // cboHistory 183 // 184 this.cboHistory.AllowDrop = true; 185 resources.ApplyResources(this.cboHistory, "cboHistory"); 186 this.cboHistory.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend; 187 this.cboHistory.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories; 188 this.cboHistory.DropDownHeight = 150; 189 this.cboHistory.DropDownWidth = 250; 190 this.cboHistory.Name = "cboHistory"; 191 this.cboHistory.Sorted = true; 192 this.cboHistory.DropDown += new System.EventHandler(this.cboHistory_DropDown); 193 this.cboHistory.SelectedIndexChanged += new System.EventHandler(this.cboHistory_SelectedIndexChanged); 194 this.cboHistory.DragDrop += new System.Windows.Forms.DragEventHandler(this.cboHistory_DragDrop); 195 this.cboHistory.DragEnter += new System.Windows.Forms.DragEventHandler(this.cboHistory_DragEnter); 196 this.cboHistory.KeyUp += new System.Windows.Forms.KeyEventHandler(this.cboHistory_KeyUp); 197 this.cboHistory.Leave += new System.EventHandler(this.cboHistory_Leave); 198 // 199 // bgwWorker 200 // 201 this.bgwWorker.WorkerReportsProgress = true; 202 this.bgwWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bgwWorker_DoWork); 203 this.bgwWorker.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bgwWorker_ProgressChanged); 204 this.bgwWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bgwWorker_RunWorkerCompleted); 205 // 206 // btnAbout 207 // 208 resources.ApplyResources(this.btnAbout, "btnAbout"); 209 this.btnAbout.Name = "btnAbout"; 210 this.toolTip.SetToolTip(this.btnAbout, resources.GetString("btnAbout.ToolTip")); 211 this.btnAbout.UseVisualStyleBackColor = true; 212 this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click); 213 // 214 // toolTip 215 // 216 this.toolTip.AutomaticDelay = 1000; 217 // 218 // btnSettings 219 // 220 resources.ApplyResources(this.btnSettings, "btnSettings"); 221 this.btnSettings.Name = "btnSettings"; 222 this.toolTip.SetToolTip(this.btnSettings, resources.GetString("btnSettings.ToolTip")); 223 this.btnSettings.UseVisualStyleBackColor = true; 224 this.btnSettings.Click += new System.EventHandler(this.btnSettings_Click); 225 // 226 // trayIconContextMenu 227 // 228 this.trayIconContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 229 this.toogleWindowItem, 230 this.toolStripSeparator1, 231 this.beendenItem}); 232 this.trayIconContextMenu.Name = "trayIconContextMenu"; 233 resources.ApplyResources(this.trayIconContextMenu, "trayIconContextMenu"); 234 // 235 // toogleWindowItem 236 // 237 this.toogleWindowItem.Name = "toogleWindowItem"; 238 resources.ApplyResources(this.toogleWindowItem, "toogleWindowItem"); 239 this.toogleWindowItem.Click += new System.EventHandler(this.toogleWindowItem_Click); 240 // 241 // toolStripSeparator1 242 // 243 this.toolStripSeparator1.Name = "toolStripSeparator1"; 244 resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); 245 // 246 // beendenItem 247 // 248 this.beendenItem.Name = "beendenItem"; 249 resources.ApplyResources(this.beendenItem, "beendenItem"); 250 this.beendenItem.Click += new System.EventHandler(this.beendenItem_Click); 251 // 252 // trayIcon 253 // 254 resources.ApplyResources(this.trayIcon, "trayIcon"); 255 this.trayIcon.ContextMenuStrip = this.trayIconContextMenu; 256 this.trayIcon.DoubleClick += new System.EventHandler(this.trayIcon_DoubleClick); 257 // 258 // MainForm 259 // 260 resources.ApplyResources(this, "$this"); 261 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 262 this.Controls.Add(this.btnSettings); 263 this.Controls.Add(this.btnAbout); 264 this.Controls.Add(this.cboHistory); 265 this.Controls.Add(this.btnRemoveFile); 266 this.Controls.Add(this.btnDirUp); 267 this.Controls.Add(this.btnDelete); 268 this.Controls.Add(this.lviFiles); 269 this.Controls.Add(this.lblDest); 270 this.Controls.Add(this.btnMove); 271 this.Controls.Add(this.statusBar); 272 this.Controls.Add(this.lblSource); 273 this.Controls.Add(this.btnSelectDestination); 274 this.Controls.Add(this.btnAddFile); 275 this.DataBindings.Add(new System.Windows.Forms.Binding("TopMost", global::SilkypixFileMover.Properties.Settings.Default, "WindowTopMost", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)); 276 this.DoubleBuffered = true; 277 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; 278 this.MaximizeBox = false; 279 this.Name = "MainForm"; 280 this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide; 281 this.TopMost = global::SilkypixFileMover.Properties.Settings.Default.WindowTopMost; 282 this.statusBar.ResumeLayout(false); 283 this.statusBar.PerformLayout(); 284 this.trayIconContextMenu.ResumeLayout(false); 285 this.ResumeLayout(false); 286 this.PerformLayout(); 287 288 } 289 290 #endregion 291 292 private System.Windows.Forms.Button btnAddFile; 293 private System.Windows.Forms.Button btnSelectDestination; 294 private System.Windows.Forms.Label lblSource; 295 private System.Windows.Forms.StatusStrip statusBar; 296 private System.Windows.Forms.ToolStripStatusLabel statusLabel; 297 private System.Windows.Forms.ToolStripProgressBar statusProgress; 298 private System.Windows.Forms.Button btnMove; 299 private System.Windows.Forms.Label lblDest; 300 private System.Windows.Forms.ListView lviFiles; 301 private System.Windows.Forms.ColumnHeader colFileName; 302 private System.Windows.Forms.ColumnHeader colTimestamp; 303 private System.Windows.Forms.ColumnHeader colSize; 304 private System.Windows.Forms.Button btnDelete; 305 private System.Windows.Forms.Button btnDirUp; 306 private System.Windows.Forms.Button btnRemoveFile; 307 private System.Windows.Forms.ComboBox cboHistory; 308 private System.ComponentModel.BackgroundWorker bgwWorker; 309 private System.Windows.Forms.ToolStripStatusLabel statusCounter; 310 private System.Windows.Forms.Button btnAbout; 311 private System.Windows.Forms.ToolTip toolTip; 312 private System.Windows.Forms.Button btnSettings; 313 private System.Windows.Forms.NotifyIcon trayIcon; 314 private System.Windows.Forms.ContextMenuStrip trayIconContextMenu; 315 private System.Windows.Forms.ToolStripMenuItem beendenItem; 316 private System.Windows.Forms.ToolStripMenuItem toogleWindowItem; 317 private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; 318 } 319 } 320