ApplyResources() public method

This method examines all the resources for the current culture. When it finds a resource with a key in the format of "[objectName].[property name]" it will apply that resource's value to the corresponding property on the object. If there is no matching property the resource will be ignored.
public ApplyResources ( object value, string objectName ) : void
value object
objectName string
return void
 private void InitializeComponent()
 {
     ComponentResourceManager manager = new ComponentResourceManager(typeof(HistoryOptionControl));
     PropertyValue value2 = new PropertyValue();
     PropertyValue value3 = new PropertyValue();
     this.chkHistoryEnabled = new CheckBox();
     this.btnClearHistory = new Button();
     this.ValuesWatcher = new PropertyValuesWatcher();
     ((ISupportInitialize) this.ValuesWatcher).BeginInit();
     base.SuspendLayout();
     manager.ApplyResources(this.chkHistoryEnabled, "chkHistoryEnabled");
     this.chkHistoryEnabled.Checked = true;
     this.chkHistoryEnabled.CheckState = CheckState.Checked;
     this.chkHistoryEnabled.Name = "chkHistoryEnabled";
     this.chkHistoryEnabled.UseVisualStyleBackColor = true;
     manager.ApplyResources(this.btnClearHistory, "btnClearHistory");
     this.btnClearHistory.Name = "btnClearHistory";
     this.btnClearHistory.UseVisualStyleBackColor = true;
     this.btnClearHistory.Click += new EventHandler(this.btnClearHistory_Click);
     value2.DataObject = this.chkHistoryEnabled;
     value2.PropertyName = "Checked";
     value3.DataObject = this.btnClearHistory;
     value3.PropertyName = "Enabled";
     this.ValuesWatcher.Items.AddRange(new PropertyValue[] { value2, value3 });
     manager.ApplyResources(this, "$this");
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Controls.Add(this.btnClearHistory);
     base.Controls.Add(this.chkHistoryEnabled);
     base.Name = "HistoryOptionControl";
     ((ISupportInitialize) this.ValuesWatcher).EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
 private void InitializeComponent()
 {
     ComponentResourceManager manager = new ComponentResourceManager(typeof(SplashPiece));
     this.pictureWait = new PictureBox();
     this.lblNote = new Label();
     this.overarchingTableLayoutPanel = new TableLayoutPanel();
     ((ISupportInitialize) this.pictureWait).BeginInit();
     this.overarchingTableLayoutPanel.SuspendLayout();
     base.SuspendLayout();
     manager.ApplyResources(this.pictureWait, "pictureWait");
     this.pictureWait.Name = "pictureWait";
     this.pictureWait.TabStop = false;
     manager.ApplyResources(this.lblNote, "lblNote");
     this.lblNote.Name = "lblNote";
     manager.ApplyResources(this.overarchingTableLayoutPanel, "overarchingTableLayoutPanel");
     this.overarchingTableLayoutPanel.Controls.Add(this.pictureWait, 0, 0);
     this.overarchingTableLayoutPanel.Controls.Add(this.lblNote, 0, 1);
     this.overarchingTableLayoutPanel.Name = "overarchingTableLayoutPanel";
     manager.ApplyResources(this, "$this");
     base.Controls.Add(this.overarchingTableLayoutPanel);
     base.Name = "SplashPiece";
     ((ISupportInitialize) this.pictureWait).EndInit();
     this.overarchingTableLayoutPanel.ResumeLayout(false);
     this.overarchingTableLayoutPanel.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ZoomTo));
			this.label1 = new System.Windows.Forms.Label();
			this.cbMagnify = new System.Windows.Forms.ComboBox();
			this.bOK = new System.Windows.Forms.Button();
			this.bCancel = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// label1
			// 
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			// 
			// cbMagnify
			// 
			resources.ApplyResources(this.cbMagnify, "cbMagnify");
			this.cbMagnify.Items.AddRange(new object[] {
            resources.GetString("cbMagnify.Items"),
            resources.GetString("cbMagnify.Items1"),
            resources.GetString("cbMagnify.Items2"),
            resources.GetString("cbMagnify.Items3"),
            resources.GetString("cbMagnify.Items4"),
            resources.GetString("cbMagnify.Items5"),
            resources.GetString("cbMagnify.Items6"),
            resources.GetString("cbMagnify.Items7"),
            resources.GetString("cbMagnify.Items8"),
            resources.GetString("cbMagnify.Items9"),
            resources.GetString("cbMagnify.Items10")});
			this.cbMagnify.Name = "cbMagnify";
			// 
			// bOK
			// 
			resources.ApplyResources(this.bOK, "bOK");
			this.bOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.bOK.Name = "bOK";
			this.bOK.Click += new System.EventHandler(this.bOK_Click);
			// 
			// bCancel
			// 
			resources.ApplyResources(this.bCancel, "bCancel");
			this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.bCancel.Name = "bCancel";
			this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
			// 
			// ZoomTo
			// 
			resources.ApplyResources(this, "$this");
			this.Controls.Add(this.bCancel);
			this.Controls.Add(this.bOK);
			this.Controls.Add(this.cbMagnify);
			this.Controls.Add(this.label1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "ZoomTo";
			this.ShowInTaskbar = false;
			this.ResumeLayout(false);

		}
 private void InitializeComponent()
 {
     ComponentResourceManager manager = new ComponentResourceManager(typeof(AutoRefreshOptionControl));
     PropertyValue value2 = new PropertyValue();
     this.lblSlowVolumeAutoRefresh = new Label();
     this.cmbSlowVolumeAutoRefresh = new ComboBoxEx();
     this.ValuesWatcher = new PropertyValuesWatcher();
     TableLayoutPanel panel = new TableLayoutPanel();
     panel.SuspendLayout();
     ((ISupportInitialize) this.ValuesWatcher).BeginInit();
     base.SuspendLayout();
     manager.ApplyResources(panel, "tlpBack");
     panel.Controls.Add(this.lblSlowVolumeAutoRefresh, 0, 0);
     panel.Controls.Add(this.cmbSlowVolumeAutoRefresh, 1, 0);
     panel.Name = "tlpBack";
     manager.ApplyResources(this.lblSlowVolumeAutoRefresh, "lblSlowVolumeAutoRefresh");
     this.lblSlowVolumeAutoRefresh.Name = "lblSlowVolumeAutoRefresh";
     manager.ApplyResources(this.cmbSlowVolumeAutoRefresh, "cmbSlowVolumeAutoRefresh");
     this.cmbSlowVolumeAutoRefresh.DropDownStyle = ComboBoxStyle.DropDownList;
     this.cmbSlowVolumeAutoRefresh.FormattingEnabled = true;
     this.cmbSlowVolumeAutoRefresh.MinimumSize = new Size(110, 0);
     this.cmbSlowVolumeAutoRefresh.Name = "cmbSlowVolumeAutoRefresh";
     value2.DataObject = this.cmbSlowVolumeAutoRefresh;
     value2.PropertyName = "SelectedIndex";
     this.ValuesWatcher.Items.AddRange(new PropertyValue[] { value2 });
     manager.ApplyResources(this, "$this");
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Controls.Add(panel);
     base.Name = "AutoRefreshOptionControl";
     panel.ResumeLayout(false);
     panel.PerformLayout();
     ((ISupportInitialize) this.ValuesWatcher).EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     ComponentResourceManager resources = new ComponentResourceManager(typeof(AttributeDialog));
     this.btnClose = new Button();
     this.tableEditorControl1 = new TableEditorControl();
     this.SuspendLayout();
     //
     // btnClose
     //
     resources.ApplyResources(this.btnClose, "btnClose");
     this.btnClose.Name = "btnClose";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new EventHandler(this.btnClose_Click_1);
     //
     // tableEditorControl1
     //
     resources.ApplyResources(this.tableEditorControl1, "tableEditorControl1");
     this.tableEditorControl1.IgnoreSelectionChanged = false;
     this.tableEditorControl1.IsEditable = true;
     this.tableEditorControl1.Name = "tableEditorControl1";
     this.tableEditorControl1.ShowFileName = true;
     this.tableEditorControl1.ShowMenuStrip = true;
     this.tableEditorControl1.ShowProgressBar = false;
     this.tableEditorControl1.ShowSelectedRowsOnly = false;
     this.tableEditorControl1.ShowToolStrip = true;
     //
     // AttributeDialog
     //
     resources.ApplyResources(this, "$this");
     //
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.tableEditorControl1);
     this.Name = "AttributeDialog";
     this.ResumeLayout(false);
 }
Beispiel #6
0
        /// <summary>
        /// 遍历窗体所有控件,针对其设置当前界面语言
        /// </summary>
        /// <param name="contrl"></param>
        /// <param name="resoureces"></param>
        private static void AppLang(Control control, ComponentResourceManager resources, ToolTip tp = null)
        {
            if (control is MenuStrip)
            {
                //将资源应用与对应的属性
                resources.ApplyResources(control, control.Name);
                MenuStrip ms = (MenuStrip)control;
                if (ms.Items.Count > 0)
                {
                    foreach (ToolStripMenuItem c in ms.Items)
                    {
                        //调用 遍历菜单 设置语言
                        AppLang(c, resources);
                    }
                }
            }

            foreach (Control c in control.Controls)
            {
                resources.ApplyResources(c, c.Name);
                if (tp != null)
                {
                    //MessageBox.Show(c.Name);
                    tp.SetToolTip(c, resources.GetString(c.Name + ".ToolTip"));
                }
                AppLang(c, resources);
            }
        }
Beispiel #7
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OpenDataDialog));
     this.directoryView1 = new DotSpatial.Data.Forms.DirectoryView();
     this.SuspendLayout();
     //
     // directoryView1
     //
     resources.ApplyResources(this.directoryView1, "directoryView1");
     this.directoryView1.ControlRectangle = new System.Drawing.Rectangle(0, 0, 600, 495);
     this.directoryView1.Directory = null;
     this.directoryView1.DocumentRectangle = new System.Drawing.Rectangle(0, 0, 600, 1);
     this.directoryView1.HorizontalScrollEnabled = true;
     this.directoryView1.IsInitialized = false;
     this.directoryView1.MinimumSize = new System.Drawing.Size(5, 5);
     this.directoryView1.Name = "directoryView1";
     this.directoryView1.ResetOnResize = false;
     this.directoryView1.SelectedItem = null;
     this.directoryView1.VerticalScrollEnabled = true;
     //
     // OpenDataDialog
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.directoryView1);
     this.Name = "OpenDataDialog";
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     ComponentResourceManager manager = new ComponentResourceManager(typeof(TabOptionControl));
     PropertyValue value2 = new PropertyValue();
     PropertyValue value3 = new PropertyValue();
     this.chkAlwaysShowTabStrip = new CheckBox();
     this.chkFixedWidthTabs = new CheckBox();
     this.ValuesWatcher = new PropertyValuesWatcher();
     ((ISupportInitialize) this.ValuesWatcher).BeginInit();
     base.SuspendLayout();
     manager.ApplyResources(this.chkAlwaysShowTabStrip, "chkAlwaysShowTabStrip");
     this.chkAlwaysShowTabStrip.Name = "chkAlwaysShowTabStrip";
     this.chkAlwaysShowTabStrip.UseVisualStyleBackColor = true;
     manager.ApplyResources(this.chkFixedWidthTabs, "chkFixedWidthTabs");
     this.chkFixedWidthTabs.Name = "chkFixedWidthTabs";
     this.chkFixedWidthTabs.UseVisualStyleBackColor = true;
     value2.DataObject = this.chkAlwaysShowTabStrip;
     value2.PropertyName = "Checked";
     value3.DataObject = this.chkFixedWidthTabs;
     value3.PropertyName = "Checked";
     this.ValuesWatcher.Items.AddRange(new PropertyValue[] { value2, value3 });
     manager.ApplyResources(this, "$this");
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Controls.Add(this.chkFixedWidthTabs);
     base.Controls.Add(this.chkAlwaysShowTabStrip);
     base.Name = "TabOptionControl";
     ((ISupportInitialize) this.ValuesWatcher).EndInit();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DoubleBox));
            this.lblCaption = new System.Windows.Forms.Label();
            this.txtValue = new System.Windows.Forms.TextBox();
            this.ttHelp = new System.Windows.Forms.ToolTip(this.components);
            this.SuspendLayout();
            // 
            // lblCaption
            // 
            resources.ApplyResources(this.lblCaption, "lblCaption");
            this.lblCaption.Name = "lblCaption";
            // 
            // txtValue
            // 
            resources.ApplyResources(this.txtValue, "txtValue");
            this.txtValue.Name = "txtValue";
            this.txtValue.TextChanged += new System.EventHandler(this.txtValue_TextChanged);
            // 
            // DoubleBox
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.txtValue);
            this.Controls.Add(this.lblCaption);
            this.Name = "DoubleBox";
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #10
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAbout));
     this.ucAbout1 = new Be.HexEditor.UCAbout();
     this.btnOK = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // ucAbout1
     //
     resources.ApplyResources(this.ucAbout1, "ucAbout1");
     this.ucAbout1.Name = "ucAbout1";
     //
     // btnOK
     //
     resources.ApplyResources(this.btnOK, "btnOK");
     this.btnOK.Name = "btnOK";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // FormAbout
     //
     this.AcceptButton = this.btnOK;
     resources.ApplyResources(this, "$this");
     this.BackColor = System.Drawing.SystemColors.Control;
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.ucAbout1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FormAbout";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.ResumeLayout(false);
 }
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MDIChild));
			this.rdlDesigner = new fyiReporting.RdlDesign.RdlEditPreview();
			this.SuspendLayout();
			// 
			// rdlDesigner
			// 
			resources.ApplyResources(this.rdlDesigner, "rdlDesigner");
			this.rdlDesigner.CurrentInsert = null;
			this.rdlDesigner.Modified = false;
			this.rdlDesigner.Name = "rdlDesigner";
			this.rdlDesigner.SelectedText = "";
			this.rdlDesigner.SelectionTool = false;
			this.rdlDesigner.Zoom = 1F;
			this.rdlDesigner.ZoomMode = fyiReporting.RdlViewer.ZoomEnum.UseZoom;
			this.rdlDesigner.OnRdlChanged += new fyiReporting.RdlDesign.RdlEditPreview.RdlChangeHandler(this.rdlDesigner_RdlChanged);
			this.rdlDesigner.OnHeightChanged += new fyiReporting.RdlDesign.DesignCtl.HeightEventHandler(this.rdlDesigner_HeightChanged);
			this.rdlDesigner.OnSelectionChanged += new fyiReporting.RdlDesign.RdlEditPreview.RdlChangeHandler(this.rdlDesigner_SelectionChanged);
			this.rdlDesigner.OnSelectionMoved += new fyiReporting.RdlDesign.RdlEditPreview.RdlChangeHandler(this.rdlDesigner_SelectionMoved);
			this.rdlDesigner.OnReportItemInserted += new fyiReporting.RdlDesign.RdlEditPreview.RdlChangeHandler(this.rdlDesigner_ReportItemInserted);
			this.rdlDesigner.OnDesignTabChanged += new fyiReporting.RdlDesign.RdlEditPreview.RdlChangeHandler(this.rdlDesigner_DesignTabChanged);
			this.rdlDesigner.OnOpenSubreport += new fyiReporting.RdlDesign.DesignCtl.OpenSubreportEventHandler(this.rdlDesigner_OpenSubreport);
			// 
			// MDIChild
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
			this.Controls.Add(this.rdlDesigner);
			this.Name = "MDIChild";
			this.Load += new System.EventHandler(this.MDIChild_Load);
			this.ResumeLayout(false);

		}
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DetailedLineSymbolDialog));
            this.panel1 = new System.Windows.Forms.Panel();
            this.dialogButtons1 = new MapWindow.Components.DialogButtons();
            this.detailedLineSymbolControl = new MapWindow.Forms.DetailedLineSymbolControl();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.AccessibleDescription = null;
            this.panel1.AccessibleName = null;
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.BackgroundImage = null;
            this.panel1.Controls.Add(this.dialogButtons1);
            this.panel1.Font = null;
            this.panel1.Name = "panel1";
            // 
            // dialogButtons1
            // 
            this.dialogButtons1.AccessibleDescription = null;
            this.dialogButtons1.AccessibleName = null;
            resources.ApplyResources(this.dialogButtons1, "dialogButtons1");
            this.dialogButtons1.BackgroundImage = null;
            this.dialogButtons1.Font = null;
            this.dialogButtons1.Name = "dialogButtons1";
            // 
            // detailedLineSymbolControl
            // 
            this.detailedLineSymbolControl.AccessibleDescription = null;
            this.detailedLineSymbolControl.AccessibleName = null;
            resources.ApplyResources(this.detailedLineSymbolControl, "detailedLineSymbolControl");
            this.detailedLineSymbolControl.BackgroundImage = null;
            this.detailedLineSymbolControl.Font = null;
            this.detailedLineSymbolControl.Name = "detailedLineSymbolControl";
            // 
            // DetailedLineSymbolDialog
            // 
            this.AccessibleDescription = null;
            this.AccessibleName = null;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackgroundImage = null;
            this.Controls.Add(this.detailedLineSymbolControl);
            this.Controls.Add(this.panel1);
            this.Font = null;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.HelpButton = true;
            this.Icon = null;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "DetailedLineSymbolDialog";
            this.ShowIcon = false;
            this.ShowInTaskbar = false;
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GenIsoFrm));
            this.panel1 = new System.Windows.Forms.Panel();
            this.btnAnnul = new System.Windows.Forms.Button();
            this.lblStatus = new System.Windows.Forms.Label();
            this.pbx = new System.Windows.Forms.ProgressBar();
            this.bwkISO = new System.ComponentModel.BackgroundWorker();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.BackColor = System.Drawing.SystemColors.Control;
            this.panel1.Controls.Add(this.btnAnnul);
            this.panel1.Name = "panel1";
            // 
            // btnAnnul
            // 
            resources.ApplyResources(this.btnAnnul, "btnAnnul");
            this.btnAnnul.Name = "btnAnnul";
            this.btnAnnul.UseVisualStyleBackColor = true;
            this.btnAnnul.Click += new System.EventHandler(this.btnAnnul_Click);
            // 
            // lblStatus
            // 
            resources.ApplyResources(this.lblStatus, "lblStatus");
            this.lblStatus.Name = "lblStatus";
            // 
            // pbx
            // 
            resources.ApplyResources(this.pbx, "pbx");
            this.pbx.Name = "pbx";
            // 
            // bwkISO
            // 
            this.bwkISO.WorkerSupportsCancellation = true;
            this.bwkISO.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bwkISO_DoWork);
            this.bwkISO.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bwkISO_RunWorkerCompleted);
            // 
            // GenIsoFrm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.White;
            this.ControlBox = false;
            this.Controls.Add(this.pbx);
            this.Controls.Add(this.lblStatus);
            this.Controls.Add(this.panel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Name = "GenIsoFrm";
            this.Load += new System.EventHandler(this.GenIsoFrm_Load);
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #14
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GoDlg));
			this.panel1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_tbForm)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.m_fwTextBoxBottomMsg)).BeginInit();
			this.SuspendLayout();
			//
			// btnClose
			//
			resources.ApplyResources(this.btnClose, "btnClose");
			//
			// btnOK
			//
			resources.ApplyResources(this.btnOK, "btnOK");
			//
			// btnInsert
			//
			resources.ApplyResources(this.btnInsert, "btnInsert");
			//
			// btnHelp
			//
			resources.ApplyResources(this.btnHelp, "btnHelp");
			//
			// panel1
			//
			resources.ApplyResources(this.panel1, "panel1");
			//
			// matchingEntries
			//
			resources.ApplyResources(this.matchingEntries, "matchingEntries");
			//
			// m_formLabel
			//
			resources.ApplyResources(this.m_formLabel, "m_formLabel");
			//
			// m_tbForm
			//
			resources.ApplyResources(this.m_tbForm, "m_tbForm");
			//
			// m_fwTextBoxBottomMsg
			//
			resources.ApplyResources(this.m_fwTextBoxBottomMsg, "m_fwTextBoxBottomMsg");
			//
			// GoDlg
			//
			resources.ApplyResources(this, "$this");
			this.helpProvider.SetHelpNavigator(this, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("$this.HelpNavigator"))));
			this.Name = "GoDlg";
			this.helpProvider.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			this.panel1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.m_tbForm)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_fwTextBoxBottomMsg)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
 public void ChangeResources()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager( this.GetType() );
     resources.ApplyResources( this._labelCombination, "_labelCombination" );
     resources.ApplyResources( this._buttonNo, "_buttonNo" );
     resources.ApplyResources( this._buttonYes, "_buttonYes" );
     resources.ApplyResources( this._labelQuestion, "_labelQuestion" );
     resources.ApplyResources( this, "$this" );
 }
 private void InitializeComponent()
 {
     ComponentResourceManager manager = new ComponentResourceManager(typeof(PropertyVersionFilterControl));
     this.tsTop = new ToolStrip();
     this.tslField = new ToolStripLabel();
     this.tslPropertyName = new ToolStripLabel();
     this.tslIs = new ToolStripLabel();
     this.tsddValueOperation = new ToolStripDropDownButton();
     this.tsmiOperationEquals = new ToolStripMenuItem();
     this.tsmiOperationNotEquals = new ToolStripMenuItem();
     this.tsmiOperationSmaller = new ToolStripMenuItem();
     this.tsmiOperationLarger = new ToolStripMenuItem();
     this.tstbValue = new ToolStripTextBox();
     this.tsTop.SuspendLayout();
     base.SuspendLayout();
     this.tsTop.BackColor = Color.Transparent;
     manager.ApplyResources(this.tsTop, "tsTop");
     this.tsTop.GripStyle = ToolStripGripStyle.Hidden;
     this.tsTop.Items.AddRange(new ToolStripItem[] { this.tslField, this.tslPropertyName, this.tslIs, this.tsddValueOperation, this.tstbValue });
     this.tsTop.Name = "tsTop";
     this.tslField.Name = "tslField";
     manager.ApplyResources(this.tslField, "tslField");
     this.tslPropertyName.Name = "tslPropertyName";
     manager.ApplyResources(this.tslPropertyName, "tslPropertyName");
     this.tslIs.Name = "tslIs";
     manager.ApplyResources(this.tslIs, "tslIs");
     this.tsddValueOperation.DisplayStyle = ToolStripItemDisplayStyle.Text;
     this.tsddValueOperation.DropDownItems.AddRange(new ToolStripItem[] { this.tsmiOperationEquals, this.tsmiOperationNotEquals, this.tsmiOperationSmaller, this.tsmiOperationLarger });
     this.tsddValueOperation.Name = "tsddValueOperation";
     manager.ApplyResources(this.tsddValueOperation, "tsddValueOperation");
     this.tsmiOperationEquals.Name = "tsmiOperationEquals";
     manager.ApplyResources(this.tsmiOperationEquals, "tsmiOperationEquals");
     this.tsmiOperationEquals.Click += new EventHandler(this.tsmiOperationEquals_Click);
     this.tsmiOperationNotEquals.Name = "tsmiOperationNotEquals";
     manager.ApplyResources(this.tsmiOperationNotEquals, "tsmiOperationNotEquals");
     this.tsmiOperationNotEquals.Click += new EventHandler(this.tsmiOperationEquals_Click);
     this.tsmiOperationSmaller.Name = "tsmiOperationSmaller";
     manager.ApplyResources(this.tsmiOperationSmaller, "tsmiOperationSmaller");
     this.tsmiOperationSmaller.Click += new EventHandler(this.tsmiOperationEquals_Click);
     this.tsmiOperationLarger.Name = "tsmiOperationLarger";
     manager.ApplyResources(this.tsmiOperationLarger, "tsmiOperationLarger");
     this.tsmiOperationLarger.Click += new EventHandler(this.tsmiOperationEquals_Click);
     this.tstbValue.BorderStyle = BorderStyle.FixedSingle;
     manager.ApplyResources(this.tstbValue, "tstbValue");
     this.tstbValue.Name = "tstbValue";
     this.tstbValue.TextChanged += new EventHandler(this.tstbValue_TextChanged);
     manager.ApplyResources(this, "$this");
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Controls.Add(this.tsTop);
     base.Name = "PropertyVersionFilterControl";
     this.tsTop.ResumeLayout(false);
     this.tsTop.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogFindByKey));
			this.label1 = new System.Windows.Forms.Label();
			this.bOK = new System.Windows.Forms.Button();
			this.bCancel = new System.Windows.Forms.Button();
			this.lbKeyList = new System.Windows.Forms.ListBox();
			this.SuspendLayout();
			// 
			// label1
			// 
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			// 
			// bOK
			// 
			resources.ApplyResources(this.bOK, "bOK");
			this.bOK.Name = "bOK";
			this.bOK.UseVisualStyleBackColor = true;
			this.bOK.Click += new System.EventHandler(this.bOK_Click);
			// 
			// bCancel
			// 
			resources.ApplyResources(this.bCancel, "bCancel");
			this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.bCancel.Name = "bCancel";
			this.bCancel.UseVisualStyleBackColor = true;
			this.bCancel.Click += new System.EventHandler(this.bCancel_Click);
			// 
			// lbKeyList
			// 
			resources.ApplyResources(this.lbKeyList, "lbKeyList");
			this.lbKeyList.FormattingEnabled = true;
			this.lbKeyList.Name = "lbKeyList";
			this.lbKeyList.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
			// 
			// DialogFindByKey
			// 
			this.AcceptButton = this.bOK;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.bCancel;
			this.Controls.Add(this.lbKeyList);
			this.Controls.Add(this.bCancel);
			this.Controls.Add(this.bOK);
			this.Controls.Add(this.label1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "DialogFindByKey";
			this.ShowInTaskbar = false;
			this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Beispiel #18
0
        /// <summary>
        /// 应用资源
        /// ApplyResources 的第一个参数为要设置的控件
        ///                  第二个参数为在资源文件中的ID,默认为控件的名称
        /// </summary>
        private void ApplyResource()
        {
            System.ComponentModel.ComponentResourceManager res = new ComponentResourceManager(typeof(AdjustPressure));
            foreach (Control ctl in Controls)
            {
                res.ApplyResources(ctl, ctl.Name);
            }

            //Caption
            res.ApplyResources(this, "$this");
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent() {
     ComponentResourceManager resources = new ComponentResourceManager(typeof(PreciseEditorLabelRow));
     Label label9;
     Label label11;
     Label commentLabel;
     label9 = new Label();
     label11 = new Label();
     commentLabel = new Label();
     this.SuspendLayout();
     // 
     // label9
     // 
     label9.AccessibleDescription = null;
     label9.AccessibleName = null;
     resources.ApplyResources(label9, "label9");
     label9.BackColor = SystemColors.Control;
     label9.Font = null;
     label9.Name = "label9";
     // 
     // label11
     // 
     label11.AccessibleDescription = null;
     label11.AccessibleName = null;
     resources.ApplyResources(label11, "label11");
     label11.BackColor = SystemColors.Control;
     label11.Font = null;
     label11.Name = "label11";
     // 
     // commentLabel
     // 
     commentLabel.AccessibleDescription = null;
     commentLabel.AccessibleName = null;
     resources.ApplyResources(commentLabel, "commentLabel");
     commentLabel.BackColor = SystemColors.Control;
     commentLabel.Font = null;
     commentLabel.Name = "commentLabel";
     // 
     // PreciseEditorLabelRow
     // 
     this.AccessibleDescription = null;
     this.AccessibleName = null;
     resources.ApplyResources(this, "$this");
     this.BackgroundImage = null;
     this.Controls.Add(label9);
     this.Controls.Add(label11);
     this.Controls.Add(commentLabel);
     this.Font = null;
     this.Name = "PreciseEditorLabelRow";
     this.Controls.SetChildIndex(commentLabel, 0);
     this.Controls.SetChildIndex(label11, 0);
     this.Controls.SetChildIndex(label9, 0);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DynamicVisibilityModeDialog));
            this.label1 = new System.Windows.Forms.Label();
            this.btnZoomedIn = new System.Windows.Forms.Button();
            this.btnZoomedOut = new System.Windows.Forms.Button();
            this.imgZoomedOut = new System.Windows.Forms.Label();
            this.imgZoomedIn = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // label1
            // 
            resources.ApplyResources(this.label1, "label1");
            this.label1.Name = "label1";
            // 
            // btnZoomedIn
            // 
            resources.ApplyResources(this.btnZoomedIn, "btnZoomedIn");
            this.btnZoomedIn.Name = "btnZoomedIn";
            this.btnZoomedIn.UseVisualStyleBackColor = true;
            this.btnZoomedIn.Click += new System.EventHandler(this.btnZoomedIn_Click);
            // 
            // btnZoomedOut
            // 
            resources.ApplyResources(this.btnZoomedOut, "btnZoomedOut");
            this.btnZoomedOut.Name = "btnZoomedOut";
            this.btnZoomedOut.UseVisualStyleBackColor = true;
            this.btnZoomedOut.Click += new System.EventHandler(this.btnZoomedOut_Click);
            // 
            // imgZoomedOut
            // 
            resources.ApplyResources(this.imgZoomedOut, "imgZoomedOut");
            this.imgZoomedOut.Name = "imgZoomedOut";
            // 
            // imgZoomedIn
            // 
            resources.ApplyResources(this.imgZoomedIn, "imgZoomedIn");
            this.imgZoomedIn.Name = "imgZoomedIn";
            // 
            // DynamicVisibilityModeDialog
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.imgZoomedIn);
            this.Controls.Add(this.imgZoomedOut);
            this.Controls.Add(this.btnZoomedOut);
            this.Controls.Add(this.btnZoomedIn);
            this.Controls.Add(this.label1);
            this.Name = "DynamicVisibilityModeDialog";
            this.ShowIcon = false;
            this.ResumeLayout(false);

        }
Beispiel #21
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InputBox));
     this.lblMessageText = new System.Windows.Forms.Label();
     this.txtInput = new System.Windows.Forms.TextBox();
     this.cmdOk = new System.Windows.Forms.Button();
     this.cmdCancel = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // lblMessageText
     //
     resources.ApplyResources(this.lblMessageText, "lblMessageText");
     this.lblMessageText.Name = "lblMessageText";
     //
     // txtInput
     //
     resources.ApplyResources(this.txtInput, "txtInput");
     this.txtInput.Name = "txtInput";
     //
     // cmdOk
     //
     resources.ApplyResources(this.cmdOk, "cmdOk");
     this.cmdOk.BackColor = System.Drawing.Color.Transparent;
     this.cmdOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.cmdOk.Name = "cmdOk";
     this.cmdOk.UseVisualStyleBackColor = false;
     this.cmdOk.Click += new System.EventHandler(this.cmdOk_Click);
     //
     // cmdCancel
     //
     resources.ApplyResources(this.cmdCancel, "cmdCancel");
     this.cmdCancel.BackColor = System.Drawing.Color.Transparent;
     this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cmdCancel.Name = "cmdCancel";
     this.cmdCancel.UseVisualStyleBackColor = false;
     this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
     //
     // InputBox
     //
     this.AcceptButton = this.cmdOk;
     this.CancelButton = this.cmdCancel;
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.cmdCancel);
     this.Controls.Add(this.cmdOk);
     this.Controls.Add(this.txtInput);
     this.Controls.Add(this.lblMessageText);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "InputBox";
     this.ShowIcon = false;
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogValidateRdl));
			this.bClose = new System.Windows.Forms.Button();
			this.lbSchemaErrors = new System.Windows.Forms.ListBox();
			this.label1 = new System.Windows.Forms.Label();
			this.bValidate = new System.Windows.Forms.Button();
			this.SuspendLayout();
			// 
			// bClose
			// 
			resources.ApplyResources(this.bClose, "bClose");
			this.bClose.CausesValidation = false;
			this.bClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.bClose.Name = "bClose";
			this.bClose.Click += new System.EventHandler(this.bClose_Click);
			// 
			// lbSchemaErrors
			// 
			resources.ApplyResources(this.lbSchemaErrors, "lbSchemaErrors");
			this.lbSchemaErrors.Name = "lbSchemaErrors";
			this.lbSchemaErrors.DoubleClick += new System.EventHandler(this.lbSchemaErrors_DoubleClick);
			// 
			// label1
			// 
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			// 
			// bValidate
			// 
			resources.ApplyResources(this.bValidate, "bValidate");
			this.bValidate.Name = "bValidate";
			this.bValidate.Click += new System.EventHandler(this.bValidate_Click);
			// 
			// DialogValidateRdl
			// 
			this.AcceptButton = this.bValidate;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.bClose;
			this.Controls.Add(this.bValidate);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.lbSchemaErrors);
			this.Controls.Add(this.bClose);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "DialogValidateRdl";
			this.ShowInTaskbar = false;
			this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
			this.Closing += new System.ComponentModel.CancelEventHandler(this.DialogValidateRdl_Closing);
			this.ResumeLayout(false);

		}
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     ComponentResourceManager resources = new ComponentResourceManager(typeof(CalculatorUserGuide));
     this.richTextBox1 = new RichTextBox();
     this.label1 = new Label();
     this.btnClose = new Button();
     this.SuspendLayout();
     //
     // richTextBox1
     //
     this.richTextBox1.AccessibleDescription = null;
     this.richTextBox1.AccessibleName = null;
     resources.ApplyResources(this.richTextBox1, "richTextBox1");
     this.richTextBox1.BackgroundImage = null;
     this.richTextBox1.Name = "richTextBox1";
     //
     // label1
     //
     this.label1.AccessibleDescription = null;
     this.label1.AccessibleName = null;
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // btnClose
     //
     this.btnClose.AccessibleDescription = null;
     this.btnClose.AccessibleName = null;
     resources.ApplyResources(this.btnClose, "btnClose");
     this.btnClose.BackgroundImage = null;
     this.btnClose.Font = null;
     this.btnClose.Name = "btnClose";
     this.btnClose.UseVisualStyleBackColor = true;
     this.btnClose.Click += new EventHandler(this.BtnCloseClick);
     //
     // CalculatorUserGuide
     //
     this.AccessibleDescription = null;
     this.AccessibleName = null;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = ((ContainerControl)this).AutoScaleMode;
     this.BackgroundImage = null;
     this.Controls.Add(this.btnClose);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.richTextBox1);
     this.Font = null;
     this.Icon = null;
     this.Name = "CalculatorUserGuide";
     this.ShowIcon = false;
     this.Load += new EventHandler(this.CalculatorUserGuideLoad);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FeatureIdentifier));
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.treFeatures = new System.Windows.Forms.TreeView();
            this.dgvAttributes = new System.Windows.Forms.DataGridView();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgvAttributes)).BeginInit();
            this.SuspendLayout();
            // 
            // splitContainer1
            // 
            resources.ApplyResources(this.splitContainer1, "splitContainer1");
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.treFeatures);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.dgvAttributes);
            // 
            // treFeatures
            // 
            resources.ApplyResources(this.treFeatures, "treFeatures");
            this.treFeatures.Name = "treFeatures";
            this.treFeatures.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treFeatures_AfterSelect);
            // 
            // dgvAttributes
            // 
            this.dgvAttributes.AllowUserToAddRows = false;
            this.dgvAttributes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            resources.ApplyResources(this.dgvAttributes, "dgvAttributes");
            this.dgvAttributes.Name = "dgvAttributes";
            // 
            // FeatureIdentifier
            // 
            resources.ApplyResources(this, "$this");
            this.Controls.Add(this.splitContainer1);
            this.Name = "FeatureIdentifier";
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
            this.splitContainer1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dgvAttributes)).EndInit();
            this.ResumeLayout(false);

        }
        /// <summary>
        /// The constructor
        /// </summary>
        public TextureBrowser()
        {
            InitializeComponent();

            //Perhaps this is not good
            containter = new Container();

            ComponentResourceManager manager = new ComponentResourceManager(typeof(NWN2TextureBrowser));

            manager.ApplyResources(list, "list");
            this.list.DrawMode = DrawMode.OwnerDrawFixed;
            manager.ApplyResources(list, "list");
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DupBox));
            this.btnSave = new System.Windows.Forms.Button();
            this.tBProfile = new System.Windows.Forms.TextBox();
            this.btnCancel = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // btnSave
            // 
            resources.ApplyResources(this.btnSave, "btnSave");
            this.btnSave.Name = "btnSave";
            this.btnSave.UseVisualStyleBackColor = true;
            this.btnSave.Click += new System.EventHandler(this.button1_Click);
            // 
            // tBProfile
            // 
            resources.ApplyResources(this.tBProfile, "tBProfile");
            this.tBProfile.ForeColor = System.Drawing.SystemColors.GrayText;
            this.tBProfile.Name = "tBProfile";
            this.tBProfile.TextChanged += new System.EventHandler(this.tBProfile_TextChanged);
            this.tBProfile.Enter += new System.EventHandler(this.tBProfile_Enter);
            this.tBProfile.Leave += new System.EventHandler(this.tBProfile_Leave);
            // 
            // btnCancel
            // 
            resources.ApplyResources(this.btnCancel, "btnCancel");
            this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.button2_Click);
            // 
            // DupBox
            // 
            this.AcceptButton = this.btnSave;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(242)))), ((int)(((byte)(242)))), ((int)(((byte)(242)))));
            this.CancelButton = this.btnCancel;
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.tBProfile);
            this.Controls.Add(this.btnSave);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "DupBox";
            this.ShowInTaskbar = false;
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Beispiel #27
0
 private void InitializeComponent()
 {
     ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (NetworkListMessage));
       this.MessageLinkLbl = new LinkLabel();
       this.SuspendLayout();
       componentResourceManager.ApplyResources((object) this.MessageLinkLbl, "MessageLinkLbl");
       this.MessageLinkLbl.Name = "MessageLinkLbl";
       this.MessageLinkLbl.TabStop = true;
       this.BackColor = Color.WhiteSmoke;
       this.Controls.Add((Control) this.MessageLinkLbl);
       componentResourceManager.ApplyResources((object) this, "$this");
       this.Name = "NetworkListMessage";
       this.ResumeLayout(false);
 }
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogListOfStrings));
			this.bOK = new System.Windows.Forms.Button();
			this.tbStrings = new System.Windows.Forms.TextBox();
			this.bCancel = new System.Windows.Forms.Button();
			this.label1 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			// 
			// bOK
			// 
			resources.ApplyResources(this.bOK, "bOK");
			this.bOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.bOK.Name = "bOK";
			// 
			// tbStrings
			// 
			resources.ApplyResources(this.tbStrings, "tbStrings");
			this.tbStrings.Name = "tbStrings";
			// 
			// bCancel
			// 
			resources.ApplyResources(this.bCancel, "bCancel");
			this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.bCancel.Name = "bCancel";
			// 
			// label1
			// 
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			// 
			// DialogListOfStrings
			// 
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.bCancel;
			this.Controls.Add(this.label1);
			this.Controls.Add(this.bCancel);
			this.Controls.Add(this.tbStrings);
			this.Controls.Add(this.bOK);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "DialogListOfStrings";
			this.ShowInTaskbar = false;
			this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
			this.ResumeLayout(false);
			this.PerformLayout();

		}
 private void InitializeComponent()
 {
     ComponentResourceManager manager = new ComponentResourceManager(typeof(StringCollectionEditor));
     this.instruction = new Label();
     this.textEntry = new TextBox();
     this.okButton = new Button();
     this.cancelButton = new Button();
     this.okCancelTableLayoutPanel = new TableLayoutPanel();
     this.okCancelTableLayoutPanel.SuspendLayout();
     base.SuspendLayout();
     manager.ApplyResources(this.instruction, "instruction");
     this.instruction.Margin = new Padding(3, 1, 3, 0);
     this.instruction.Name = "instruction";
     this.textEntry.AcceptsTab = true;
     this.textEntry.AcceptsReturn = true;
     manager.ApplyResources(this.textEntry, "textEntry");
     this.textEntry.Name = "textEntry";
     manager.ApplyResources(this.okButton, "okButton");
     this.okButton.DialogResult = DialogResult.OK;
     this.okButton.Margin = new Padding(0, 0, 3, 0);
     this.okButton.Name = "okButton";
     manager.ApplyResources(this.cancelButton, "cancelButton");
     this.cancelButton.DialogResult = DialogResult.Cancel;
     this.cancelButton.Margin = new Padding(3, 0, 0, 0);
     this.cancelButton.Name = "cancelButton";
     manager.ApplyResources(this.okCancelTableLayoutPanel, "okCancelTableLayoutPanel");
     this.okCancelTableLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50f));
     this.okCancelTableLayoutPanel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50f));
     this.okCancelTableLayoutPanel.Controls.Add(this.okButton, 0, 0);
     this.okCancelTableLayoutPanel.Controls.Add(this.cancelButton, 1, 0);
     this.okCancelTableLayoutPanel.Name = "okCancelTableLayoutPanel";
     this.okCancelTableLayoutPanel.RowStyles.Add(new RowStyle());
     manager.ApplyResources(this, "$this");
     base.AutoScaleMode = AutoScaleMode.Font;
     base.Controls.Add(this.okCancelTableLayoutPanel);
     base.Controls.Add(this.instruction);
     base.Controls.Add(this.textEntry);
     base.HelpButton = true;
     base.MaximizeBox = false;
     base.MinimizeBox = false;
     base.Name = "StringCollectionEditor";
     base.ShowIcon = false;
     base.ShowInTaskbar = false;
     this.okCancelTableLayoutPanel.ResumeLayout(false);
     this.okCancelTableLayoutPanel.PerformLayout();
     base.HelpRequested += new HelpEventHandler(this.Form_HelpRequested);
     base.ResumeLayout(false);
     base.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataSourcePassword));
			this.label1 = new System.Windows.Forms.Label();
			this.bOK = new System.Windows.Forms.Button();
			this.bCancel = new System.Windows.Forms.Button();
			this.tbPassPhrase = new System.Windows.Forms.TextBox();
			this.SuspendLayout();
			// 
			// label1
			// 
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			// 
			// bOK
			// 
			resources.ApplyResources(this.bOK, "bOK");
			this.bOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.bOK.Name = "bOK";
			// 
			// bCancel
			// 
			resources.ApplyResources(this.bCancel, "bCancel");
			this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.bCancel.Name = "bCancel";
			// 
			// tbPassPhrase
			// 
			resources.ApplyResources(this.tbPassPhrase, "tbPassPhrase");
			this.tbPassPhrase.Name = "tbPassPhrase";
			// 
			// DataSourcePassword
			// 
			this.AcceptButton = this.bOK;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.bCancel;
			this.Controls.Add(this.tbPassPhrase);
			this.Controls.Add(this.bCancel);
			this.Controls.Add(this.bOK);
			this.Controls.Add(this.label1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "DataSourcePassword";
			this.ShowInTaskbar = false;
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Beispiel #31
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CacheOptions));
            this.label1                         = new System.Windows.Forms.Label();
            this.enableCache                    = new System.Windows.Forms.CheckBox();
            this.daysLabel                      = new System.Windows.Forms.Label();
            this.daysMaskedTextBox              = new System.Windows.Forms.MaskedTextBox();
            this.panel3                         = new System.Windows.Forms.Panel();
            this.checkForUpdatesLabel           = new System.Windows.Forms.Label();
            this.label5                         = new System.Windows.Forms.Label();
            this.autoUpdateCheckBox             = new System.Windows.Forms.CheckBox();
            this.toolTip                        = new System.Windows.Forms.ToolTip(this.components);
            this.label3                         = new System.Windows.Forms.Label();
            this.maxViolationCountMaskedTextBox = new System.Windows.Forms.MaskedTextBox();
            this.label2                         = new System.Windows.Forms.Label();
            this.cultureComboBox                = new System.Windows.Forms.ComboBox();
            this.violationsAsErrorsCheckBox     = new System.Windows.Forms.CheckBox();
            this.panel3.SuspendLayout();
            this.SuspendLayout();

            // label1
            resources.ApplyResources(this.label1, "label1");
            this.label1.Name = "label1";

            // enableCache
            resources.ApplyResources(this.enableCache, "enableCache");
            this.enableCache.Name = "enableCache";
            this.enableCache.UseVisualStyleBackColor = true;
            this.enableCache.CheckedChanged         += new System.EventHandler(this.EnableCacheCheckedChanged);

            // daysLabel
            resources.ApplyResources(this.daysLabel, "daysLabel");
            this.daysLabel.Name = "daysLabel";

            // daysMaskedTextBox
            this.daysMaskedTextBox.AllowPromptAsInput = false;
            this.daysMaskedTextBox.CausesValidation   = false;
            this.daysMaskedTextBox.CutCopyMaskFormat  = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
            resources.ApplyResources(this.daysMaskedTextBox, "daysMaskedTextBox");
            this.daysMaskedTextBox.Name = "daysMaskedTextBox";
            this.daysMaskedTextBox.RejectInputOnFirstFailure = true;
            this.daysMaskedTextBox.ResetOnPrompt             = false;
            this.daysMaskedTextBox.ResetOnSpace   = false;
            this.daysMaskedTextBox.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
            this.daysMaskedTextBox.TextChanged   += new System.EventHandler(this.DaysMaskedTextBoxTextChanged);
            this.daysMaskedTextBox.KeyDown       += new System.Windows.Forms.KeyEventHandler(this.DaysMaskedTextBoxKeyDown);

            // panel3
            resources.ApplyResources(this.panel3, "panel3");
            this.panel3.Controls.Add(this.checkForUpdatesLabel);
            this.panel3.Controls.Add(this.daysLabel);
            this.panel3.Controls.Add(this.daysMaskedTextBox);
            this.panel3.Controls.Add(this.label5);
            this.panel3.Controls.Add(this.autoUpdateCheckBox);
            this.panel3.Name = "panel3";

            // checkForUpdatesLabel
            resources.ApplyResources(this.checkForUpdatesLabel, "checkForUpdatesLabel");
            this.checkForUpdatesLabel.Name = "checkForUpdatesLabel";

            // label5
            resources.ApplyResources(this.label5, "label5");
            this.label5.Name = "label5";

            // autoUpdateCheckBox
            resources.ApplyResources(this.autoUpdateCheckBox, "autoUpdateCheckBox");
            this.autoUpdateCheckBox.Checked    = true;
            this.autoUpdateCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
            this.autoUpdateCheckBox.Name       = "autoUpdateCheckBox";
            this.autoUpdateCheckBox.UseVisualStyleBackColor = true;
            this.autoUpdateCheckBox.CheckedChanged         += new System.EventHandler(this.AutoUpdateCheckBoxCheckedChanged);

            // label3
            resources.ApplyResources(this.label3, "label3");
            this.label3.Name = "label3";

            // maxViolationCountMaskedTextBox
            this.maxViolationCountMaskedTextBox.AllowPromptAsInput = false;
            this.maxViolationCountMaskedTextBox.CausesValidation   = false;
            this.maxViolationCountMaskedTextBox.CutCopyMaskFormat  = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
            resources.ApplyResources(this.maxViolationCountMaskedTextBox, "maxViolationCountMaskedTextBox");
            this.maxViolationCountMaskedTextBox.Name = "maxViolationCountMaskedTextBox";
            this.maxViolationCountMaskedTextBox.RejectInputOnFirstFailure = true;
            this.maxViolationCountMaskedTextBox.ResetOnPrompt             = false;
            this.maxViolationCountMaskedTextBox.ResetOnSpace   = false;
            this.maxViolationCountMaskedTextBox.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
            this.maxViolationCountMaskedTextBox.TextChanged   += new System.EventHandler(this.MaxViolationCountTextBoxTextChanged);
            this.maxViolationCountMaskedTextBox.KeyDown       += new System.Windows.Forms.KeyEventHandler(this.MaxViolationCountMaskedTextBoxKeyDown);

            // label2
            resources.ApplyResources(this.label2, "label2");
            this.label2.Name = "label2";

            // cultureComboBox
            this.cultureComboBox.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cultureComboBox.FormattingEnabled = true;
            resources.ApplyResources(this.cultureComboBox, "cultureComboBox");
            this.cultureComboBox.Name = "cultureComboBox";
            this.cultureComboBox.SelectedIndexChanged += new System.EventHandler(this.CultureComboBoxSelectedIndexChanged);

            // violationsAsErrorsCheckBox
            resources.ApplyResources(this.violationsAsErrorsCheckBox, "violationsAsErrorsCheckBox");
            this.violationsAsErrorsCheckBox.Name = "violationsAsErrorsCheckBox";
            this.violationsAsErrorsCheckBox.UseVisualStyleBackColor = true;
            this.violationsAsErrorsCheckBox.CheckedChanged         += new System.EventHandler(this.ViolationsAsErrorsCheckBoxCheckedChanged);

            // CacheOptions
            this.Controls.Add(this.violationsAsErrorsCheckBox);
            this.Controls.Add(this.cultureComboBox);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.enableCache);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.maxViolationCountMaskedTextBox);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.label1);
            this.MinimumSize = new System.Drawing.Size(246, 80);
            this.Name        = "CacheOptions";
            resources.ApplyResources(this, "$this");
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Beispiel #32
0
        /// <summary>
        ///   Required method for Designer support - do not modify the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            var resources =
                new System.ComponentModel.ComponentResourceManager(typeof(PropertiesScanDialog));

            this.scanDate     = new System.Windows.Forms.Label();
            this.label1       = new System.Windows.Forms.Label();
            this.descr        = new System.Windows.Forms.TextBox();
            this.buttonSave   = new System.Windows.Forms.Button();
            this.buttonCancel = new System.Windows.Forms.Button();
            this.SuspendLayout();
            //
            // scanDate
            //
            resources.ApplyResources(this.scanDate, "scanDate");
            this.scanDate.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.scanDate.Name      = "scanDate";
            //
            // label1
            //
            resources.ApplyResources(this.label1, "label1");
            this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.label1.Name      = "label1";
            //
            // descr
            //
            resources.ApplyResources(this.descr, "descr");
            this.descr.Name = "descr";
            //
            // buttonSave
            //
            resources.ApplyResources(this.buttonSave, "buttonSave");
            this.buttonSave.Name   = "buttonSave";
            this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
            //
            // buttonCancel
            //
            resources.ApplyResources(this.buttonCancel, "buttonCancel");
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.buttonCancel.Name         = "buttonCancel";
            this.buttonCancel.Click       += new System.EventHandler(this.buttonCancel_Click);
            //
            // PropertiesScanDialog
            //
            this.AcceptButton = this.buttonSave;
            resources.ApplyResources(this, "$this");
            this.CancelButton = this.buttonCancel;
            this.Controls.Add(this.buttonSave);
            this.Controls.Add(this.descr);
            this.Controls.Add(this.scanDate);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.buttonCancel);
            this.DoubleBuffered  = true;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox     = false;
            this.MinimizeBox     = false;
            this.Name            = "PropertiesScanDialog";

            this.ResumeLayout(false);
            this.PerformLayout();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Paratext5LocationUnknown));
     System.Windows.Forms.Button btnBrowse;
     System.Windows.Forms.Button btnHelp;
     System.Windows.Forms.Label  label1;
     System.Windows.Forms.Label  label2;
     this.picDlgIcon = new System.Windows.Forms.PictureBox();
     this.btnOK      = new System.Windows.Forms.Button();
     btnBrowse       = new System.Windows.Forms.Button();
     btnHelp         = new System.Windows.Forms.Button();
     label1          = new System.Windows.Forms.Label();
     label2          = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.picDlgIcon)).BeginInit();
     this.SuspendLayout();
     //
     // picDlgIcon
     //
     resources.ApplyResources(this.picDlgIcon, "picDlgIcon");
     this.picDlgIcon.Name    = "picDlgIcon";
     this.picDlgIcon.TabStop = false;
     //
     // btnBrowse
     //
     resources.ApplyResources(btnBrowse, "btnBrowse");
     btnBrowse.Name   = "btnBrowse";
     btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
     //
     // btnHelp
     //
     resources.ApplyResources(btnHelp, "btnHelp");
     btnHelp.Name   = "btnHelp";
     btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
     //
     // label1
     //
     resources.ApplyResources(label1, "label1");
     label1.Name = "label1";
     //
     // label2
     //
     resources.ApplyResources(label2, "label2");
     label2.Name = "label2";
     //
     // btnOK
     //
     resources.ApplyResources(this.btnOK, "btnOK");
     this.btnOK.Name   = "btnOK";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // Paratext5LocationUnknown
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(label2);
     this.Controls.Add(label1);
     this.Controls.Add(btnHelp);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(btnBrowse);
     this.Controls.Add(this.picDlgIcon);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "Paratext5LocationUnknown";
     this.ShowInTaskbar   = false;
     ((System.ComponentModel.ISupportInitialize)(this.picDlgIcon)).EndInit();
     this.ResumeLayout(false);
 }
 /// -----------------------------------------------------------------------------------
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 /// -----------------------------------------------------------------------------------
 private void InitializeComponent()
 {
     System.Windows.Forms.Button btnCancel;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScrImportSetMessage));
     this.lblMsg          = new System.Windows.Forms.Label();
     this.btnRetry        = new System.Windows.Forms.Button();
     this.btnHelp         = new System.Windows.Forms.Button();
     this.lstInvalidFiles = new System.Windows.Forms.ListBox();
     this.btnSetup        = new System.Windows.Forms.Button();
     btnCancel            = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // btnCancel
     //
     resources.ApplyResources(btnCancel, "btnCancel");
     btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     btnCancel.Name         = "btnCancel";
     //
     // lblMsg
     //
     resources.ApplyResources(this.lblMsg, "lblMsg");
     this.lblMsg.Name = "lblMsg";
     //
     // btnRetry
     //
     resources.ApplyResources(this.btnRetry, "btnRetry");
     this.btnRetry.DialogResult = System.Windows.Forms.DialogResult.Retry;
     this.btnRetry.Name         = "btnRetry";
     //
     // btnHelp
     //
     resources.ApplyResources(this.btnHelp, "btnHelp");
     this.btnHelp.Name   = "btnHelp";
     this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
     //
     // lstInvalidFiles
     //
     resources.ApplyResources(this.lstInvalidFiles, "lstInvalidFiles");
     this.lstInvalidFiles.BackColor = System.Drawing.SystemColors.Control;
     this.lstInvalidFiles.Name      = "lstInvalidFiles";
     this.lstInvalidFiles.Sorted    = true;
     //
     // btnSetup
     //
     resources.ApplyResources(this.btnSetup, "btnSetup");
     this.btnSetup.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSetup.Name         = "btnSetup";
     //
     // ScrImportSetMessage
     //
     this.AcceptButton = this.btnSetup;
     resources.ApplyResources(this, "$this");
     this.CancelButton = btnCancel;
     this.Controls.Add(this.btnSetup);
     this.Controls.Add(this.lstInvalidFiles);
     this.Controls.Add(this.btnHelp);
     this.Controls.Add(btnCancel);
     this.Controls.Add(this.btnRetry);
     this.Controls.Add(this.lblMsg);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ScrImportSetMessage";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Show;
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #35
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DialogExprEditor));
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.tvOp            = new System.Windows.Forms.TreeView();
     this.bCopy           = new System.Windows.Forms.Button();
     this.lOp             = new System.Windows.Forms.Label();
     this.tbExpr          = new System.Windows.Forms.TextBox();
     this.lExpr           = new System.Windows.Forms.Label();
     this.panel1          = new System.Windows.Forms.Panel();
     this.bCancel         = new System.Windows.Forms.Button();
     this.bOK             = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     resources.ApplyResources(this.splitContainer1, "splitContainer1");
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tvOp);
     this.splitContainer1.Panel1.Controls.Add(this.bCopy);
     this.splitContainer1.Panel1.Controls.Add(this.lOp);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.tbExpr);
     this.splitContainer1.Panel2.Controls.Add(this.lExpr);
     //
     // tvOp
     //
     resources.ApplyResources(this.tvOp, "tvOp");
     this.tvOp.Name         = "tvOp";
     this.tvOp.DoubleClick += new System.EventHandler(this.tvOp_DoubleClick);
     //
     // bCopy
     //
     resources.ApplyResources(this.bCopy, "bCopy");
     this.bCopy.Name   = "bCopy";
     this.bCopy.Click += new System.EventHandler(this.bCopy_Click);
     //
     // lOp
     //
     resources.ApplyResources(this.lOp, "lOp");
     this.lOp.Name = "lOp";
     //
     // tbExpr
     //
     this.tbExpr.AcceptsReturn = true;
     this.tbExpr.AcceptsTab    = true;
     resources.ApplyResources(this.tbExpr, "tbExpr");
     this.tbExpr.Name     = "tbExpr";
     this.tbExpr.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbExpr_KeyDown);
     //
     // lExpr
     //
     resources.ApplyResources(this.lExpr, "lExpr");
     this.lExpr.Name = "lExpr";
     //
     // panel1
     //
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.Controls.Add(this.bCancel);
     this.panel1.Controls.Add(this.bOK);
     this.panel1.Name = "panel1";
     //
     // bCancel
     //
     resources.ApplyResources(this.bCancel, "bCancel");
     this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.bCancel.Name         = "bCancel";
     //
     // bOK
     //
     resources.ApplyResources(this.bOK, "bOK");
     this.bOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.bOK.Name         = "bOK";
     //
     // DialogExprEditor
     //
     resources.ApplyResources(this, "$this");
     this.CancelButton = this.bCancel;
     this.Controls.Add(this.splitContainer1);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "DialogExprEditor";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Show;
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.Panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BrowseOPMLForm));
     this.OPMLTreeView          = new System.Windows.Forms.TreeView();
     this.imageList1            = new System.Windows.Forms.ImageList(this.components);
     this.CloseButton           = new System.Windows.Forms.Button();
     this.SubscribeButton       = new System.Windows.Forms.Button();
     this.label1                = new System.Windows.Forms.Label();
     this.DirectoryDropDown     = new System.Windows.Forms.ComboBox();
     this.AddNewDirectoryButton = new System.Windows.Forms.Button();
     this.UrlTextBox            = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // OPMLTreeView
     //
     resources.ApplyResources(this.OPMLTreeView, "OPMLTreeView");
     this.OPMLTreeView.ImageList    = this.imageList1;
     this.OPMLTreeView.Name         = "OPMLTreeView";
     this.OPMLTreeView.AfterCheck  += new System.Windows.Forms.TreeViewEventHandler(this.OPMLTreeView_AfterCheck);
     this.OPMLTreeView.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OPMLTreeView_AfterSelect);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     //
     // CloseButton
     //
     resources.ApplyResources(this.CloseButton, "CloseButton");
     this.CloseButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.CloseButton.Name         = "CloseButton";
     this.CloseButton.Click       += new System.EventHandler(this.CloseButton_Click);
     //
     // SubscribeButton
     //
     resources.ApplyResources(this.SubscribeButton, "SubscribeButton");
     this.SubscribeButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.SubscribeButton.Name         = "SubscribeButton";
     this.SubscribeButton.Click       += new System.EventHandler(this.SubscribeButton_Click);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // DirectoryDropDown
     //
     resources.ApplyResources(this.DirectoryDropDown, "DirectoryDropDown");
     this.DirectoryDropDown.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.DirectoryDropDown.Name                  = "DirectoryDropDown";
     this.DirectoryDropDown.Sorted                = true;
     this.DirectoryDropDown.SelectedIndexChanged += new System.EventHandler(this.DirectoryDropDown_SelectedIndexChanged);
     //
     // AddNewDirectoryButton
     //
     resources.ApplyResources(this.AddNewDirectoryButton, "AddNewDirectoryButton");
     this.AddNewDirectoryButton.Name = "AddNewDirectoryButton";
     this.AddNewDirectoryButton.UseVisualStyleBackColor = true;
     this.AddNewDirectoryButton.Click += new System.EventHandler(this.AddNewDirectoryButton_Click);
     //
     // UrlTextBox
     //
     resources.ApplyResources(this.UrlTextBox, "UrlTextBox");
     this.UrlTextBox.BackColor = System.Drawing.Color.White;
     this.UrlTextBox.Name      = "UrlTextBox";
     this.UrlTextBox.ReadOnly  = true;
     //
     // BrowseOPMLForm
     //
     this.AcceptButton = this.SubscribeButton;
     this.BackColor    = System.Drawing.SystemColors.ControlLight;
     this.CancelButton = this.CloseButton;
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.UrlTextBox);
     this.Controls.Add(this.AddNewDirectoryButton);
     this.Controls.Add(this.DirectoryDropDown);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.SubscribeButton);
     this.Controls.Add(this.CloseButton);
     this.Controls.Add(this.OPMLTreeView);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "BrowseOPMLForm";
     this.ShowInTaskbar   = false;
     this.Load           += new System.EventHandler(this.BrowseOPMLForm_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutDialog));
     this.bClose = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // bClose
     //
     this.bClose.AccessibleDescription = null;
     this.bClose.AccessibleName        = null;
     resources.ApplyResources(this.bClose, "bClose");
     this.bClose.BackColor               = System.Drawing.Color.Transparent;
     this.bClose.BackgroundImage         = null;
     this.bClose.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.bClose.Name                    = "bClose";
     this.bClose.UseVisualStyleBackColor = false;
     this.bClose.Click                  += new System.EventHandler(this.bClose_Click);
     //
     // panel1
     //
     this.panel1.AccessibleDescription = null;
     this.panel1.AccessibleName        = null;
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.BackColor       = System.Drawing.Color.Transparent;
     this.panel1.BackgroundImage = null;
     this.panel1.Cursor          = System.Windows.Forms.Cursors.Hand;
     this.panel1.Font            = null;
     this.panel1.Name            = "panel1";
     this.panel1.Click          += new System.EventHandler(this.panel1_Click);
     //
     // label1
     //
     this.label1.AccessibleDescription = null;
     this.label1.AccessibleName        = null;
     resources.ApplyResources(this.label1, "label1");
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Name      = "label1";
     //
     // AboutDialog
     //
     this.AccessibleDescription = null;
     this.AccessibleName        = null;
     resources.ApplyResources(this, "$this");
     this.BackColor    = System.Drawing.SystemColors.Control;
     this.CancelButton = this.bClose;
     this.Controls.Add(this.label1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.bClose);
     this.Font            = null;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "AboutDialog";
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.TopMost         = true;
     this.ResumeLayout(false);
 }
Beispiel #38
0
 /// <summary>
 /// M�thode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette m�thode avec l'�diteur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChartOfAccountsForm));
     this.splitContainer1            = new System.Windows.Forms.SplitContainer();
     this.tlvAccounts                = new BrightIdeasSoftware.TreeListView();
     this.olvColumnInternalAccountID = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumnLabel             = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvColumnExportedBalance   = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.groupBoxActions            = new System.Windows.Forms.GroupBox();
     this.btnExportAccounts          = new System.Windows.Forms.Button();
     this.btnImportAccounts          = new System.Windows.Forms.Button();
     this.btnDeleteAccount           = new System.Windows.Forms.Button();
     this.btnEditAccount             = new System.Windows.Forms.Button();
     this.btnAddAccount              = new System.Windows.Forms.Button();
     this.btnExport          = new System.Windows.Forms.Button();
     this.panel1             = new System.Windows.Forms.Panel();
     this.btnClose           = new System.Windows.Forms.Button();
     this._labelTitle        = new System.Windows.Forms.Label();
     this._tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.fileDialog         = new System.Windows.Forms.OpenFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tlvAccounts)).BeginInit();
     this.groupBoxActions.SuspendLayout();
     this.panel1.SuspendLayout();
     this._tableLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     resources.ApplyResources(this.splitContainer1, "splitContainer1");
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.tlvAccounts);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.groupBoxActions);
     //
     // tlvAccounts
     //
     this.tlvAccounts.AllColumns.Add(this.olvColumnInternalAccountID);
     this.tlvAccounts.AllColumns.Add(this.olvColumnLabel);
     this.tlvAccounts.AllColumns.Add(this.olvColumnExportedBalance);
     this.tlvAccounts.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.olvColumnInternalAccountID,
         this.olvColumnLabel
     });
     resources.ApplyResources(this.tlvAccounts, "tlvAccounts");
     this.tlvAccounts.FullRowSelect = true;
     this.tlvAccounts.HideSelection = false;
     this.tlvAccounts.MultiSelect   = false;
     this.tlvAccounts.Name          = "tlvAccounts";
     this.tlvAccounts.OwnerDraw     = true;
     this.tlvAccounts.ShowGroups    = false;
     this.tlvAccounts.UseCompatibleStateImageBehavior = false;
     this.tlvAccounts.View        = System.Windows.Forms.View.Details;
     this.tlvAccounts.VirtualMode = true;
     //
     // olvColumnInternalAccountID
     //
     this.olvColumnInternalAccountID.AspectName = "Number";
     this.olvColumnInternalAccountID.IsEditable = false;
     resources.ApplyResources(this.olvColumnInternalAccountID, "olvColumnInternalAccountID");
     //
     // olvColumnLabel
     //
     this.olvColumnLabel.AspectName = "Label";
     resources.ApplyResources(this.olvColumnLabel, "olvColumnLabel");
     //
     // olvColumnExportedBalance
     //
     this.olvColumnExportedBalance.AspectName = "Id";
     resources.ApplyResources(this.olvColumnExportedBalance, "olvColumnExportedBalance");
     this.olvColumnExportedBalance.IsVisible = false;
     //
     // groupBoxActions
     //
     this.groupBoxActions.Controls.Add(this.btnExportAccounts);
     this.groupBoxActions.Controls.Add(this.btnImportAccounts);
     this.groupBoxActions.Controls.Add(this.btnDeleteAccount);
     this.groupBoxActions.Controls.Add(this.btnEditAccount);
     this.groupBoxActions.Controls.Add(this.btnAddAccount);
     this.groupBoxActions.Controls.Add(this.btnExport);
     resources.ApplyResources(this.groupBoxActions, "groupBoxActions");
     this.groupBoxActions.Name    = "groupBoxActions";
     this.groupBoxActions.TabStop = false;
     //
     // btnExportAccounts
     //
     resources.ApplyResources(this.btnExportAccounts, "btnExportAccounts");
     this.btnExportAccounts.Name   = "btnExportAccounts";
     this.btnExportAccounts.Click += new System.EventHandler(this.BtnExportAccountsClick);
     //
     // btnImportAccounts
     //
     resources.ApplyResources(this.btnImportAccounts, "btnImportAccounts");
     this.btnImportAccounts.Name   = "btnImportAccounts";
     this.btnImportAccounts.Click += new System.EventHandler(this.BtnLoadClick);
     //
     // btnDeleteAccount
     //
     resources.ApplyResources(this.btnDeleteAccount, "btnDeleteAccount");
     this.btnDeleteAccount.Name   = "btnDeleteAccount";
     this.btnDeleteAccount.Click += new System.EventHandler(this.buttonDeleteRule_Click);
     //
     // btnEditAccount
     //
     resources.ApplyResources(this.btnEditAccount, "btnEditAccount");
     this.btnEditAccount.Name   = "btnEditAccount";
     this.btnEditAccount.Click += new System.EventHandler(this.buttonEditRule_Click);
     //
     // btnAddAccount
     //
     resources.ApplyResources(this.btnAddAccount, "btnAddAccount");
     this.btnAddAccount.Name   = "btnAddAccount";
     this.btnAddAccount.Click += new System.EventHandler(this.buttonAddAccount_Click);
     //
     // btnExport
     //
     resources.ApplyResources(this.btnExport, "btnExport");
     this.btnExport.Name   = "btnExport";
     this.btnExport.Click += new System.EventHandler(this.butExport_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.btnClose);
     this.panel1.Controls.Add(this._labelTitle);
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.Name = "panel1";
     //
     // btnClose
     //
     resources.ApplyResources(this.btnClose, "btnClose");
     this.btnClose.Name   = "btnClose";
     this.btnClose.Click += new System.EventHandler(this.buttonExit_Click);
     //
     // _labelTitle
     //
     this._labelTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(81)))), ((int)(((byte)(152)))));
     resources.ApplyResources(this._labelTitle, "_labelTitle");
     this._labelTitle.ForeColor = System.Drawing.Color.White;
     this._labelTitle.Name      = "_labelTitle";
     //
     // _tableLayoutPanel1
     //
     resources.ApplyResources(this._tableLayoutPanel1, "_tableLayoutPanel1");
     this._tableLayoutPanel1.Controls.Add(this.panel1, 0, 0);
     this._tableLayoutPanel1.Controls.Add(this.splitContainer1, 0, 1);
     this._tableLayoutPanel1.Name = "_tableLayoutPanel1";
     //
     // fileDialog
     //
     this.fileDialog.DefaultExt = "*.CSV";
     //
     // ChartOfAccountsForm
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this._tableLayoutPanel1);
     this.Name        = "ChartOfAccountsForm";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tlvAccounts)).EndInit();
     this.groupBoxActions.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this._tableLayoutPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChartLegendCtl));
     this.label1            = new System.Windows.Forms.Label();
     this.label2            = new System.Windows.Forms.Label();
     this.cbPosition        = new System.Windows.Forms.ComboBox();
     this.cbLayout          = new System.Windows.Forms.ComboBox();
     this.chkVisible        = new System.Windows.Forms.CheckBox();
     this.chkInsidePlotArea = new System.Windows.Forms.CheckBox();
     this.SuspendLayout();
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // cbPosition
     //
     resources.ApplyResources(this.cbPosition, "cbPosition");
     this.cbPosition.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbPosition.Items.AddRange(new object[] {
         resources.GetString("cbPosition.Items"),
         resources.GetString("cbPosition.Items1"),
         resources.GetString("cbPosition.Items2"),
         resources.GetString("cbPosition.Items3"),
         resources.GetString("cbPosition.Items4"),
         resources.GetString("cbPosition.Items5"),
         resources.GetString("cbPosition.Items6"),
         resources.GetString("cbPosition.Items7"),
         resources.GetString("cbPosition.Items8"),
         resources.GetString("cbPosition.Items9"),
         resources.GetString("cbPosition.Items10"),
         resources.GetString("cbPosition.Items11")
     });
     this.cbPosition.Name = "cbPosition";
     this.cbPosition.SelectedIndexChanged += new System.EventHandler(this.cbPosition_SelectedIndexChanged);
     //
     // cbLayout
     //
     resources.ApplyResources(this.cbLayout, "cbLayout");
     this.cbLayout.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbLayout.Items.AddRange(new object[] {
         resources.GetString("cbLayout.Items"),
         resources.GetString("cbLayout.Items1"),
         resources.GetString("cbLayout.Items2")
     });
     this.cbLayout.Name = "cbLayout";
     this.cbLayout.SelectedIndexChanged += new System.EventHandler(this.cbLayout_SelectedIndexChanged);
     //
     // chkVisible
     //
     resources.ApplyResources(this.chkVisible, "chkVisible");
     this.chkVisible.Name            = "chkVisible";
     this.chkVisible.CheckedChanged += new System.EventHandler(this.chkVisible_CheckedChanged);
     //
     // chkInsidePlotArea
     //
     resources.ApplyResources(this.chkInsidePlotArea, "chkInsidePlotArea");
     this.chkInsidePlotArea.Name            = "chkInsidePlotArea";
     this.chkInsidePlotArea.CheckedChanged += new System.EventHandler(this.chkInsidePlotArea_CheckedChanged);
     //
     // ChartLegendCtl
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.chkInsidePlotArea);
     this.Controls.Add(this.chkVisible);
     this.Controls.Add(this.cbLayout);
     this.Controls.Add(this.cbPosition);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Name = "ChartLegendCtl";
     this.ResumeLayout(false);
 }
Beispiel #40
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Firmware));
     this.pictureBoxAPM      = new ArdupilotMega.ImageLabel();
     this.pictureBoxQuad     = new ArdupilotMega.ImageLabel();
     this.pictureBoxHexa     = new ArdupilotMega.ImageLabel();
     this.pictureBoxTri      = new ArdupilotMega.ImageLabel();
     this.pictureBoxY6       = new ArdupilotMega.ImageLabel();
     this.lbl_status         = new System.Windows.Forms.Label();
     this.progress           = new System.Windows.Forms.ProgressBar();
     this.label2             = new System.Windows.Forms.Label();
     this.pictureBoxHeli     = new ArdupilotMega.ImageLabel();
     this.BUT_setup          = new ArdupilotMega.MyButton();
     this.pictureBoxHilimage = new System.Windows.Forms.PictureBox();
     this.pictureBoxAPHil    = new System.Windows.Forms.PictureBox();
     this.pictureBoxACHil    = new System.Windows.Forms.PictureBox();
     this.pictureBoxACHHil   = new System.Windows.Forms.PictureBox();
     this.pictureBoxOcta     = new ArdupilotMega.ImageLabel();
     this.pictureBoxOctav    = new ArdupilotMega.ImageLabel();
     this.label1             = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxHilimage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxAPHil)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxACHil)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxACHHil)).BeginInit();
     this.SuspendLayout();
     //
     // pictureBoxAPM
     //
     this.pictureBoxAPM.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxAPM.Image  = null;
     resources.ApplyResources(this.pictureBoxAPM, "pictureBoxAPM");
     this.pictureBoxAPM.Name    = "pictureBoxAPM";
     this.pictureBoxAPM.TabStop = false;
     this.pictureBoxAPM.Click  += new System.EventHandler(this.pictureBoxAPM_Click);
     //
     // pictureBoxQuad
     //
     this.pictureBoxQuad.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxQuad.Image  = null;
     resources.ApplyResources(this.pictureBoxQuad, "pictureBoxQuad");
     this.pictureBoxQuad.Name    = "pictureBoxQuad";
     this.pictureBoxQuad.TabStop = false;
     this.pictureBoxQuad.Click  += new System.EventHandler(this.pictureBoxQuad_Click);
     //
     // pictureBoxHexa
     //
     this.pictureBoxHexa.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxHexa.Image  = null;
     resources.ApplyResources(this.pictureBoxHexa, "pictureBoxHexa");
     this.pictureBoxHexa.Name    = "pictureBoxHexa";
     this.pictureBoxHexa.TabStop = false;
     this.pictureBoxHexa.Click  += new System.EventHandler(this.pictureBoxHexa_Click);
     //
     // pictureBoxTri
     //
     this.pictureBoxTri.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxTri.Image  = null;
     resources.ApplyResources(this.pictureBoxTri, "pictureBoxTri");
     this.pictureBoxTri.Name    = "pictureBoxTri";
     this.pictureBoxTri.TabStop = false;
     this.pictureBoxTri.Click  += new System.EventHandler(this.pictureBoxTri_Click);
     //
     // pictureBoxY6
     //
     this.pictureBoxY6.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxY6.Image  = null;
     resources.ApplyResources(this.pictureBoxY6, "pictureBoxY6");
     this.pictureBoxY6.Name    = "pictureBoxY6";
     this.pictureBoxY6.TabStop = false;
     this.pictureBoxY6.Click  += new System.EventHandler(this.pictureBoxY6_Click);
     //
     // lbl_status
     //
     resources.ApplyResources(this.lbl_status, "lbl_status");
     this.lbl_status.Name = "lbl_status";
     //
     // progress
     //
     resources.ApplyResources(this.progress, "progress");
     this.progress.Name = "progress";
     this.progress.Step = 1;
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // pictureBoxHeli
     //
     this.pictureBoxHeli.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxHeli.Image  = null;
     resources.ApplyResources(this.pictureBoxHeli, "pictureBoxHeli");
     this.pictureBoxHeli.Name    = "pictureBoxHeli";
     this.pictureBoxHeli.TabStop = false;
     this.pictureBoxHeli.Click  += new System.EventHandler(this.pictureBoxHeli_Click);
     //
     // BUT_setup
     //
     resources.ApplyResources(this.BUT_setup, "BUT_setup");
     this.BUT_setup.Name = "BUT_setup";
     this.BUT_setup.UseVisualStyleBackColor = true;
     this.BUT_setup.Click += new System.EventHandler(this.BUT_setup_Click);
     //
     // pictureBoxHilimage
     //
     this.pictureBoxHilimage.Image = global::ArdupilotMega.Properties.Resources.hil;
     resources.ApplyResources(this.pictureBoxHilimage, "pictureBoxHilimage");
     this.pictureBoxHilimage.Name    = "pictureBoxHilimage";
     this.pictureBoxHilimage.TabStop = false;
     //
     // pictureBoxAPHil
     //
     this.pictureBoxAPHil.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxAPHil.Image  = global::ArdupilotMega.Properties.Resources.hilplane;
     resources.ApplyResources(this.pictureBoxAPHil, "pictureBoxAPHil");
     this.pictureBoxAPHil.Name    = "pictureBoxAPHil";
     this.pictureBoxAPHil.TabStop = false;
     this.pictureBoxAPHil.Click  += new System.EventHandler(this.pictureBoxAPHil_Click);
     //
     // pictureBoxACHil
     //
     this.pictureBoxACHil.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxACHil.Image  = global::ArdupilotMega.Properties.Resources.hilquad;
     resources.ApplyResources(this.pictureBoxACHil, "pictureBoxACHil");
     this.pictureBoxACHil.Name    = "pictureBoxACHil";
     this.pictureBoxACHil.TabStop = false;
     this.pictureBoxACHil.Click  += new System.EventHandler(this.pictureBoxACHil_Click);
     //
     // pictureBoxACHHil
     //
     this.pictureBoxACHHil.Cursor = System.Windows.Forms.Cursors.Hand;
     this.pictureBoxACHHil.Image  = global::ArdupilotMega.Properties.Resources.hilheli;
     resources.ApplyResources(this.pictureBoxACHHil, "pictureBoxACHHil");
     this.pictureBoxACHHil.Name    = "pictureBoxACHHil";
     this.pictureBoxACHHil.TabStop = false;
     this.pictureBoxACHHil.Click  += new System.EventHandler(this.pictureBoxACHHil_Click);
     //
     // pictureBoxOcta
     //
     this.pictureBoxOcta.Image = null;
     resources.ApplyResources(this.pictureBoxOcta, "pictureBoxOcta");
     this.pictureBoxOcta.Name    = "pictureBoxOcta";
     this.pictureBoxOcta.TabStop = false;
     this.pictureBoxOcta.Click  += new System.EventHandler(this.pictureBoxOcta_Click);
     //
     // pictureBoxOctav
     //
     this.pictureBoxOctav.Image = null;
     resources.ApplyResources(this.pictureBoxOctav, "pictureBoxOctav");
     this.pictureBoxOctav.Name    = "pictureBoxOctav";
     this.pictureBoxOctav.TabStop = false;
     this.pictureBoxOctav.Click  += new System.EventHandler(this.pictureBoxOctav_Click);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // Firmware
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.label1);
     this.Controls.Add(this.BUT_setup);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.lbl_status);
     this.Controls.Add(this.progress);
     this.Controls.Add(this.pictureBoxACHHil);
     this.Controls.Add(this.pictureBoxACHil);
     this.Controls.Add(this.pictureBoxAPHil);
     this.Controls.Add(this.pictureBoxHilimage);
     this.Controls.Add(this.pictureBoxOctav);
     this.Controls.Add(this.pictureBoxOcta);
     this.Controls.Add(this.pictureBoxHeli);
     this.Controls.Add(this.pictureBoxY6);
     this.Controls.Add(this.pictureBoxTri);
     this.Controls.Add(this.pictureBoxHexa);
     this.Controls.Add(this.pictureBoxQuad);
     this.Controls.Add(this.pictureBoxAPM);
     this.MinimumSize = new System.Drawing.Size(1008, 461);
     this.Name        = "Firmware";
     this.Load       += new System.EventHandler(this.Firmware_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxHilimage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxAPHil)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxACHil)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxACHHil)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FindDialog));
     this.tbStr         = new System.Windows.Forms.TextBox();
     this.label1        = new System.Windows.Forms.Label();
     this.btnCancel     = new Janus.Windows.EditControls.UIButton();
     this.btnOK         = new Janus.Windows.EditControls.UIButton();
     this.cbStartAtRoot = new System.Windows.Forms.CheckBox();
     this.cbWhole       = new System.Windows.Forms.CheckBox();
     this.cbType        = new System.Windows.Forms.CheckBox();
     this.cbMethod      = new System.Windows.Forms.CheckBox();
     this.cbParameter   = new System.Windows.Forms.CheckBox();
     this.cbField       = new System.Windows.Forms.CheckBox();
     this.cbResource    = new System.Windows.Forms.CheckBox();
     this.checkBox8     = new System.Windows.Forms.CheckBox();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.cbProperty    = new System.Windows.Forms.CheckBox();
     this.cbEvent       = new System.Windows.Forms.CheckBox();
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.cbCaseful     = new System.Windows.Forms.CheckBox();
     this.panelEx1      = new DevComponents.DotNetBar.PanelEx();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // tbStr
     //
     this.tbStr.AccessibleDescription = null;
     this.tbStr.AccessibleName        = null;
     resources.ApplyResources(this.tbStr, "tbStr");
     this.tbStr.BackgroundImage = null;
     this.tbStr.Font            = null;
     this.tbStr.Name            = "tbStr";
     //
     // label1
     //
     this.label1.AccessibleDescription = null;
     this.label1.AccessibleName        = null;
     resources.ApplyResources(this.label1, "label1");
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = null;
     this.label1.Name      = "label1";
     //
     // btnCancel
     //
     this.btnCancel.AccessibleDescription = null;
     this.btnCancel.AccessibleName        = null;
     resources.ApplyResources(this.btnCancel, "btnCancel");
     this.btnCancel.BackColor       = System.Drawing.SystemColors.Control;
     this.btnCancel.BackgroundImage = null;
     this.btnCancel.DialogResult    = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Font            = null;
     this.btnCancel.Name            = "btnCancel";
     this.btnCancel.VisualStyle     = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnCancel.Click          += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.AccessibleDescription = null;
     this.btnOK.AccessibleName        = null;
     resources.ApplyResources(this.btnOK, "btnOK");
     this.btnOK.BackColor       = System.Drawing.SystemColors.Control;
     this.btnOK.BackgroundImage = null;
     this.btnOK.Font            = null;
     this.btnOK.Name            = "btnOK";
     this.btnOK.VisualStyle     = Janus.Windows.UI.VisualStyle.Office2003;
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // cbStartAtRoot
     //
     this.cbStartAtRoot.AccessibleDescription = null;
     this.cbStartAtRoot.AccessibleName        = null;
     resources.ApplyResources(this.cbStartAtRoot, "cbStartAtRoot");
     this.cbStartAtRoot.BackColor               = System.Drawing.Color.Transparent;
     this.cbStartAtRoot.BackgroundImage         = null;
     this.cbStartAtRoot.Font                    = null;
     this.cbStartAtRoot.Name                    = "cbStartAtRoot";
     this.cbStartAtRoot.UseVisualStyleBackColor = false;
     //
     // cbWhole
     //
     this.cbWhole.AccessibleDescription = null;
     this.cbWhole.AccessibleName        = null;
     resources.ApplyResources(this.cbWhole, "cbWhole");
     this.cbWhole.BackColor               = System.Drawing.Color.Transparent;
     this.cbWhole.BackgroundImage         = null;
     this.cbWhole.Font                    = null;
     this.cbWhole.Name                    = "cbWhole";
     this.cbWhole.UseVisualStyleBackColor = false;
     //
     // cbType
     //
     this.cbType.AccessibleDescription = null;
     this.cbType.AccessibleName        = null;
     resources.ApplyResources(this.cbType, "cbType");
     this.cbType.BackColor               = System.Drawing.Color.Transparent;
     this.cbType.BackgroundImage         = null;
     this.cbType.Font                    = null;
     this.cbType.Name                    = "cbType";
     this.cbType.UseVisualStyleBackColor = false;
     //
     // cbMethod
     //
     this.cbMethod.AccessibleDescription = null;
     this.cbMethod.AccessibleName        = null;
     resources.ApplyResources(this.cbMethod, "cbMethod");
     this.cbMethod.BackColor               = System.Drawing.Color.Transparent;
     this.cbMethod.BackgroundImage         = null;
     this.cbMethod.Font                    = null;
     this.cbMethod.Name                    = "cbMethod";
     this.cbMethod.UseVisualStyleBackColor = false;
     //
     // cbParameter
     //
     this.cbParameter.AccessibleDescription = null;
     this.cbParameter.AccessibleName        = null;
     resources.ApplyResources(this.cbParameter, "cbParameter");
     this.cbParameter.BackColor               = System.Drawing.Color.Transparent;
     this.cbParameter.BackgroundImage         = null;
     this.cbParameter.Font                    = null;
     this.cbParameter.Name                    = "cbParameter";
     this.cbParameter.UseVisualStyleBackColor = false;
     //
     // cbField
     //
     this.cbField.AccessibleDescription = null;
     this.cbField.AccessibleName        = null;
     resources.ApplyResources(this.cbField, "cbField");
     this.cbField.BackColor               = System.Drawing.Color.Transparent;
     this.cbField.BackgroundImage         = null;
     this.cbField.Font                    = null;
     this.cbField.Name                    = "cbField";
     this.cbField.UseVisualStyleBackColor = false;
     //
     // cbResource
     //
     this.cbResource.AccessibleDescription = null;
     this.cbResource.AccessibleName        = null;
     resources.ApplyResources(this.cbResource, "cbResource");
     this.cbResource.BackgroundImage = null;
     this.cbResource.Font            = null;
     this.cbResource.Name            = "cbResource";
     //
     // checkBox8
     //
     this.checkBox8.AccessibleDescription = null;
     this.checkBox8.AccessibleName        = null;
     resources.ApplyResources(this.checkBox8, "checkBox8");
     this.checkBox8.BackColor               = System.Drawing.Color.Transparent;
     this.checkBox8.BackgroundImage         = null;
     this.checkBox8.Font                    = null;
     this.checkBox8.Name                    = "checkBox8";
     this.checkBox8.UseVisualStyleBackColor = false;
     //
     // groupBox1
     //
     this.groupBox1.AccessibleDescription = null;
     this.groupBox1.AccessibleName        = null;
     resources.ApplyResources(this.groupBox1, "groupBox1");
     this.groupBox1.BackColor       = System.Drawing.Color.Transparent;
     this.groupBox1.BackgroundImage = null;
     this.groupBox1.Controls.Add(this.cbResource);
     this.groupBox1.Controls.Add(this.cbProperty);
     this.groupBox1.Controls.Add(this.cbParameter);
     this.groupBox1.Controls.Add(this.cbField);
     this.groupBox1.Controls.Add(this.cbEvent);
     this.groupBox1.Controls.Add(this.cbType);
     this.groupBox1.Controls.Add(this.cbMethod);
     this.groupBox1.Font    = null;
     this.groupBox1.Name    = "groupBox1";
     this.groupBox1.TabStop = false;
     //
     // cbProperty
     //
     this.cbProperty.AccessibleDescription = null;
     this.cbProperty.AccessibleName        = null;
     resources.ApplyResources(this.cbProperty, "cbProperty");
     this.cbProperty.BackgroundImage = null;
     this.cbProperty.Font            = null;
     this.cbProperty.Name            = "cbProperty";
     //
     // cbEvent
     //
     this.cbEvent.AccessibleDescription = null;
     this.cbEvent.AccessibleName        = null;
     resources.ApplyResources(this.cbEvent, "cbEvent");
     this.cbEvent.BackColor               = System.Drawing.Color.Transparent;
     this.cbEvent.BackgroundImage         = null;
     this.cbEvent.Font                    = null;
     this.cbEvent.Name                    = "cbEvent";
     this.cbEvent.UseVisualStyleBackColor = false;
     //
     // groupBox2
     //
     this.groupBox2.AccessibleDescription = null;
     this.groupBox2.AccessibleName        = null;
     resources.ApplyResources(this.groupBox2, "groupBox2");
     this.groupBox2.BackColor       = System.Drawing.Color.Transparent;
     this.groupBox2.BackgroundImage = null;
     this.groupBox2.Controls.Add(this.cbCaseful);
     this.groupBox2.Controls.Add(this.cbWhole);
     this.groupBox2.Font    = null;
     this.groupBox2.Name    = "groupBox2";
     this.groupBox2.TabStop = false;
     //
     // cbCaseful
     //
     this.cbCaseful.AccessibleDescription = null;
     this.cbCaseful.AccessibleName        = null;
     resources.ApplyResources(this.cbCaseful, "cbCaseful");
     this.cbCaseful.BackgroundImage = null;
     this.cbCaseful.Font            = null;
     this.cbCaseful.Name            = "cbCaseful";
     //
     // panelEx1
     //
     this.panelEx1.AccessibleDescription = null;
     this.panelEx1.AccessibleName        = null;
     resources.ApplyResources(this.panelEx1, "panelEx1");
     this.panelEx1.Controls.Add(this.cbStartAtRoot);
     this.panelEx1.Controls.Add(this.label1);
     this.panelEx1.Controls.Add(this.checkBox8);
     this.panelEx1.Controls.Add(this.groupBox1);
     this.panelEx1.Controls.Add(this.btnCancel);
     this.panelEx1.Controls.Add(this.groupBox2);
     this.panelEx1.Controls.Add(this.tbStr);
     this.panelEx1.Controls.Add(this.btnOK);
     this.panelEx1.Font            = null;
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx1.Style.BackgroundImagePosition     = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx1.Style.GradientAngle = 90;
     //
     // FindDialog
     //
     this.AccessibleDescription = null;
     this.AccessibleName        = null;
     resources.ApplyResources(this, "$this");
     this.BackgroundImage = null;
     this.ControlBox      = false;
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered  = true;
     this.Font            = null;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name            = "FindDialog";
     //this.Load += new System.EventHandler(this.FindDialog_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.panelEx1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmAvalaibleCollateralProducts));
     this.webBrowserPackage     = new System.Windows.Forms.WebBrowser();
     this.pnlCollateralProducts = new System.Windows.Forms.Panel();
     this.groupBox                   = new System.Windows.Forms.GroupBox();
     this.buttonEditProduct          = new System.Windows.Forms.Button();
     this.checkBoxShowDeletedProduct = new System.Windows.Forms.CheckBox();
     this.buttonAddProduct           = new System.Windows.Forms.Button();
     this.buttonDeletePackage        = new System.Windows.Forms.Button();
     this.pnlCollateralProducts.SuspendLayout();
     this.groupBox.SuspendLayout();
     this.SuspendLayout();
     //
     // webBrowserPackage
     //
     resources.ApplyResources(this.webBrowserPackage, "webBrowserPackage");
     this.webBrowserPackage.MinimumSize        = new System.Drawing.Size(20, 20);
     this.webBrowserPackage.Name               = "webBrowserPackage";
     this.webBrowserPackage.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowserPackage_DocumentCompleted);
     //
     // pnlCollateralProducts
     //
     this.pnlCollateralProducts.Controls.Add(this.webBrowserPackage);
     this.pnlCollateralProducts.Controls.Add(this.groupBox);
     resources.ApplyResources(this.pnlCollateralProducts, "pnlCollateralProducts");
     this.pnlCollateralProducts.Name = "pnlCollateralProducts";
     //
     // groupBox
     //
     resources.ApplyResources(this.groupBox, "groupBox");
     this.groupBox.Controls.Add(this.buttonEditProduct);
     this.groupBox.Controls.Add(this.checkBoxShowDeletedProduct);
     this.groupBox.Controls.Add(this.buttonAddProduct);
     this.groupBox.Controls.Add(this.buttonDeletePackage);
     this.groupBox.Name    = "groupBox";
     this.groupBox.TabStop = false;
     //
     // buttonEditProduct
     //
     resources.ApplyResources(this.buttonEditProduct, "buttonEditProduct");
     this.buttonEditProduct.Name   = "buttonEditProduct";
     this.buttonEditProduct.Click += new System.EventHandler(this.buttonEditProduct_Click);
     //
     // checkBoxShowDeletedProduct
     //
     resources.ApplyResources(this.checkBoxShowDeletedProduct, "checkBoxShowDeletedProduct");
     this.checkBoxShowDeletedProduct.Name            = "checkBoxShowDeletedProduct";
     this.checkBoxShowDeletedProduct.CheckedChanged += new System.EventHandler(this.checkBoxShowDeletedProduct_CheckedChanged);
     //
     // buttonAddProduct
     //
     resources.ApplyResources(this.buttonAddProduct, "buttonAddProduct");
     this.buttonAddProduct.Name   = "buttonAddProduct";
     this.buttonAddProduct.Click += new System.EventHandler(this.buttonAddProduct_Click);
     //
     // buttonDeletePackage
     //
     resources.ApplyResources(this.buttonDeletePackage, "buttonDeletePackage");
     this.buttonDeletePackage.Name   = "buttonDeletePackage";
     this.buttonDeletePackage.Click += new System.EventHandler(this.buttonDeletePackage_Click);
     //
     // FrmAvalaibleCollateralProducts
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.pnlCollateralProducts);
     this.Name  = "FrmAvalaibleCollateralProducts";
     this.Load += new System.EventHandler(this.PackagesForm_Load);
     this.Controls.SetChildIndex(this.pnlCollateralProducts, 0);
     this.pnlCollateralProducts.ResumeLayout(false);
     this.groupBox.ResumeLayout(false);
     this.groupBox.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #43
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SubreportCtl));
     this.dgParms       = new System.Windows.Forms.DataGrid();
     this.dgTableStyle  = new System.Windows.Forms.DataGridTableStyle();
     this.label1        = new System.Windows.Forms.Label();
     this.tbReportFile  = new System.Windows.Forms.TextBox();
     this.bFile         = new System.Windows.Forms.Button();
     this.tbNoRows      = new System.Windows.Forms.TextBox();
     this.label2        = new System.Windows.Forms.Label();
     this.chkMergeTrans = new System.Windows.Forms.CheckBox();
     this.bRefreshParms = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.dgParms)).BeginInit();
     this.SuspendLayout();
     //
     // dgParms
     //
     resources.ApplyResources(this.dgParms, "dgParms");
     this.dgParms.CaptionVisible  = false;
     this.dgParms.DataMember      = "";
     this.dgParms.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     this.dgParms.Name            = "dgParms";
     this.dgParms.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
         this.dgTableStyle
     });
     //
     // dgTableStyle
     //
     this.dgTableStyle.AllowSorting = false;
     this.dgTableStyle.DataGrid     = this.dgParms;
     resources.ApplyResources(this.dgTableStyle, "dgTableStyle");
     this.dgTableStyle.HeaderForeColor = System.Drawing.SystemColors.ControlText;
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // tbReportFile
     //
     resources.ApplyResources(this.tbReportFile, "tbReportFile");
     this.tbReportFile.Name = "tbReportFile";
     //
     // bFile
     //
     resources.ApplyResources(this.bFile, "bFile");
     this.bFile.Name   = "bFile";
     this.bFile.Click += new System.EventHandler(this.bFile_Click);
     //
     // tbNoRows
     //
     resources.ApplyResources(this.tbNoRows, "tbNoRows");
     this.tbNoRows.Name = "tbNoRows";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // chkMergeTrans
     //
     resources.ApplyResources(this.chkMergeTrans, "chkMergeTrans");
     this.chkMergeTrans.Name = "chkMergeTrans";
     //
     // bRefreshParms
     //
     resources.ApplyResources(this.bRefreshParms, "bRefreshParms");
     this.bRefreshParms.Name   = "bRefreshParms";
     this.bRefreshParms.Click += new System.EventHandler(this.bRefreshParms_Click);
     //
     // SubreportCtl
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.bRefreshParms);
     this.Controls.Add(this.chkMergeTrans);
     this.Controls.Add(this.tbNoRows);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.bFile);
     this.Controls.Add(this.tbReportFile);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dgParms);
     this.Name = "SubreportCtl";
     ((System.ComponentModel.ISupportInitialize)(this.dgParms)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CorporateUserControl));
     this.splitContainer1     = new System.Windows.Forms.SplitContainer();
     this.lvContacts          = new System.Windows.Forms.ListView();
     this.columnHeaderName    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderPhone   = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderPhone2  = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.groupBox3           = new System.Windows.Forms.GroupBox();
     this.btnAddContact       = new System.Windows.Forms.Button();
     this.btnSelectContact    = new System.Windows.Forms.Button();
     this.buttonDelete        = new System.Windows.Forms.Button();
     this.cbBranch            = new System.Windows.Forms.ComboBox();
     this.groupBoxCorporate   = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel1   = new System.Windows.Forms.TableLayoutPanel();
     this.labelLastname       = new System.Windows.Forms.Label();
     this.eacCorporate        = new OpenCBS.GUI.UserControl.EconomicActivityControl();
     this.lblEconomicActivity = new System.Windows.Forms.Label();
     this.labelDateCrate      = new System.Windows.Forms.Label();
     this.labelSigle          = new System.Windows.Forms.Label();
     this.labelCorpCycle      = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.textBoxCorpLoanCycle       = new System.Windows.Forms.TextBox();
     this.textBoxLastNameCorporate   = new System.Windows.Forms.TextBox();
     this.dateTimePickerDateOfCreate = new System.Windows.Forms.DateTimePicker();
     this.textBoxSigle = new System.Windows.Forms.TextBox();
     this.textBoxSmallNameCorporate = new System.Windows.Forms.TextBox();
     this.labelSmallNameCorporate   = new System.Windows.Forms.Label();
     this.linkLabelChangePhoto2     = new System.Windows.Forms.LinkLabel();
     this.linkLabelChangePhoto      = new System.Windows.Forms.LinkLabel();
     this.pictureBox2             = new System.Windows.Forms.PictureBox();
     this.pictureBox1             = new System.Windows.Forms.PictureBox();
     this.flowLayoutPanel1        = new System.Windows.Forms.FlowLayoutPanel();
     this.buttonCancel            = new System.Windows.Forms.Button();
     this.buttonSave              = new System.Windows.Forms.Button();
     this.btnPrint                = new OpenCBS.GUI.UserControl.PrintButton();
     this.tabPageSavings          = new System.Windows.Forms.TabPage();
     this.savingsListUserControl1 = new OpenCBS.GUI.UserControl.SavingsListUserControl();
     this.tabPageContacts         = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel3       = new System.Windows.Forms.TableLayoutPanel();
     this.tabPageAddress          = new System.Windows.Forms.TabPage();
     this.groupBoxAddress         = new System.Windows.Forms.GroupBox();
     this.tabControlCorporate     = new System.Windows.Forms.TabControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBoxCorporate.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.flowLayoutPanel1.SuspendLayout();
     this.tabPageSavings.SuspendLayout();
     this.tabPageContacts.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.tabPageAddress.SuspendLayout();
     this.tabControlCorporate.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainer1
     //
     resources.ApplyResources(this.splitContainer1, "splitContainer1");
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     resources.ApplyResources(this.splitContainer1.Panel1, "splitContainer1.Panel1");
     this.splitContainer1.Panel1.Controls.Add(this.lvContacts);
     //
     // splitContainer1.Panel2
     //
     resources.ApplyResources(this.splitContainer1.Panel2, "splitContainer1.Panel2");
     this.splitContainer1.Panel2.Controls.Add(this.groupBox3);
     //
     // lvContacts
     //
     resources.ApplyResources(this.lvContacts, "lvContacts");
     this.lvContacts.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeaderName,
         this.columnHeaderPhone,
         this.columnHeaderPhone2
     });
     this.lvContacts.FullRowSelect = true;
     this.lvContacts.GridLines     = true;
     this.lvContacts.MultiSelect   = false;
     this.lvContacts.Name          = "lvContacts";
     this.lvContacts.UseCompatibleStateImageBehavior = false;
     this.lvContacts.View         = System.Windows.Forms.View.Details;
     this.lvContacts.DoubleClick += new System.EventHandler(this.ViewMember);
     //
     // columnHeaderName
     //
     resources.ApplyResources(this.columnHeaderName, "columnHeaderName");
     //
     // columnHeaderPhone
     //
     resources.ApplyResources(this.columnHeaderPhone, "columnHeaderPhone");
     //
     // columnHeaderPhone2
     //
     resources.ApplyResources(this.columnHeaderPhone2, "columnHeaderPhone2");
     //
     // groupBox3
     //
     resources.ApplyResources(this.groupBox3, "groupBox3");
     this.groupBox3.Controls.Add(this.btnAddContact);
     this.groupBox3.Controls.Add(this.btnSelectContact);
     this.groupBox3.Controls.Add(this.buttonDelete);
     this.groupBox3.Name    = "groupBox3";
     this.groupBox3.TabStop = false;
     //
     // btnAddContact
     //
     resources.ApplyResources(this.btnAddContact, "btnAddContact");
     this.btnAddContact.Name   = "btnAddContact";
     this.btnAddContact.Click += new System.EventHandler(this.BtnAddContactClick);
     //
     // btnSelectContact
     //
     resources.ApplyResources(this.btnSelectContact, "btnSelectContact");
     this.btnSelectContact.Name   = "btnSelectContact";
     this.btnSelectContact.Click += new System.EventHandler(this.BtnSelectContactClick);
     //
     // buttonDelete
     //
     resources.ApplyResources(this.buttonDelete, "buttonDelete");
     this.buttonDelete.Name   = "buttonDelete";
     this.buttonDelete.Click += new System.EventHandler(this.ButtonDeleteClick1);
     //
     // cbBranch
     //
     resources.ApplyResources(this.cbBranch, "cbBranch");
     this.cbBranch.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbBranch.FormattingEnabled = true;
     this.cbBranch.Name = "cbBranch";
     //
     // groupBoxCorporate
     //
     resources.ApplyResources(this.groupBoxCorporate, "groupBoxCorporate");
     this.groupBoxCorporate.Controls.Add(this.tableLayoutPanel1);
     this.groupBoxCorporate.Controls.Add(this.linkLabelChangePhoto2);
     this.groupBoxCorporate.Controls.Add(this.linkLabelChangePhoto);
     this.groupBoxCorporate.Controls.Add(this.pictureBox2);
     this.groupBoxCorporate.Controls.Add(this.pictureBox1);
     this.groupBoxCorporate.Name    = "groupBoxCorporate";
     this.groupBoxCorporate.TabStop = false;
     //
     // tableLayoutPanel1
     //
     resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
     this.tableLayoutPanel1.Controls.Add(this.labelLastname, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.eacCorporate, 2, 6);
     this.tableLayoutPanel1.Controls.Add(this.lblEconomicActivity, 0, 6);
     this.tableLayoutPanel1.Controls.Add(this.labelDateCrate, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.labelSigle, 0, 2);
     this.tableLayoutPanel1.Controls.Add(this.cbBranch, 1, 5);
     this.tableLayoutPanel1.Controls.Add(this.labelCorpCycle, 0, 4);
     this.tableLayoutPanel1.Controls.Add(this.label3, 0, 5);
     this.tableLayoutPanel1.Controls.Add(this.textBoxCorpLoanCycle, 1, 4);
     this.tableLayoutPanel1.Controls.Add(this.textBoxLastNameCorporate, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.dateTimePickerDateOfCreate, 1, 1);
     this.tableLayoutPanel1.Controls.Add(this.textBoxSigle, 1, 2);
     this.tableLayoutPanel1.Controls.Add(this.textBoxSmallNameCorporate, 1, 3);
     this.tableLayoutPanel1.Controls.Add(this.labelSmallNameCorporate, 0, 3);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     //
     // labelLastname
     //
     resources.ApplyResources(this.labelLastname, "labelLastname");
     this.labelLastname.BackColor = System.Drawing.Color.Transparent;
     this.labelLastname.Name      = "labelLastname";
     //
     // eacCorporate
     //
     resources.ApplyResources(this.eacCorporate, "eacCorporate");
     this.eacCorporate.Activity = null;
     this.eacCorporate.Name     = "eacCorporate";
     this.eacCorporate.EconomicActivityChange += new System.EventHandler <OpenCBS.GUI.UserControl.EconomicActivtyEventArgs>(this.EacCorporateEconomicActivityChange);
     //
     // lblEconomicActivity
     //
     resources.ApplyResources(this.lblEconomicActivity, "lblEconomicActivity");
     this.lblEconomicActivity.BackColor = System.Drawing.Color.Transparent;
     this.lblEconomicActivity.Name      = "lblEconomicActivity";
     //
     // labelDateCrate
     //
     resources.ApplyResources(this.labelDateCrate, "labelDateCrate");
     this.labelDateCrate.BackColor = System.Drawing.Color.Transparent;
     this.labelDateCrate.Name      = "labelDateCrate";
     //
     // labelSigle
     //
     resources.ApplyResources(this.labelSigle, "labelSigle");
     this.labelSigle.BackColor = System.Drawing.Color.Transparent;
     this.labelSigle.Name      = "labelSigle";
     //
     // labelCorpCycle
     //
     resources.ApplyResources(this.labelCorpCycle, "labelCorpCycle");
     this.labelCorpCycle.BackColor = System.Drawing.Color.Transparent;
     this.labelCorpCycle.Name      = "labelCorpCycle";
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Name      = "label3";
     //
     // textBoxCorpLoanCycle
     //
     resources.ApplyResources(this.textBoxCorpLoanCycle, "textBoxCorpLoanCycle");
     this.textBoxCorpLoanCycle.Name = "textBoxCorpLoanCycle";
     //
     // textBoxLastNameCorporate
     //
     resources.ApplyResources(this.textBoxLastNameCorporate, "textBoxLastNameCorporate");
     this.textBoxLastNameCorporate.BackColor = System.Drawing.Color.White;
     this.textBoxLastNameCorporate.Name      = "textBoxLastNameCorporate";
     //
     // dateTimePickerDateOfCreate
     //
     resources.ApplyResources(this.dateTimePickerDateOfCreate, "dateTimePickerDateOfCreate");
     this.dateTimePickerDateOfCreate.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePickerDateOfCreate.CustomFormat = ApplicationSettings.GetInstance("").SHORT_DATE_FORMAT;
     this.dateTimePickerDateOfCreate.Name         = "dateTimePickerDateOfCreate";
     this.dateTimePickerDateOfCreate.Value        = new System.DateTime(2006, 5, 15, 0, 0, 0, 0);
     //
     // textBoxSigle
     //
     resources.ApplyResources(this.textBoxSigle, "textBoxSigle");
     this.textBoxSigle.BackColor = System.Drawing.Color.White;
     this.textBoxSigle.Name      = "textBoxSigle";
     //
     // textBoxSmallNameCorporate
     //
     resources.ApplyResources(this.textBoxSmallNameCorporate, "textBoxSmallNameCorporate");
     this.textBoxSmallNameCorporate.Name = "textBoxSmallNameCorporate";
     //
     // labelSmallNameCorporate
     //
     resources.ApplyResources(this.labelSmallNameCorporate, "labelSmallNameCorporate");
     this.labelSmallNameCorporate.BackColor = System.Drawing.Color.Transparent;
     this.labelSmallNameCorporate.Name      = "labelSmallNameCorporate";
     //
     // linkLabelChangePhoto2
     //
     resources.ApplyResources(this.linkLabelChangePhoto2, "linkLabelChangePhoto2");
     this.linkLabelChangePhoto2.Cursor  = System.Windows.Forms.Cursors.Hand;
     this.linkLabelChangePhoto2.Name    = "linkLabelChangePhoto2";
     this.linkLabelChangePhoto2.TabStop = true;
     this.linkLabelChangePhoto2.Click  += new System.EventHandler(this.PictureBox1Click);
     //
     // linkLabelChangePhoto
     //
     resources.ApplyResources(this.linkLabelChangePhoto, "linkLabelChangePhoto");
     this.linkLabelChangePhoto.Name    = "linkLabelChangePhoto";
     this.linkLabelChangePhoto.TabStop = true;
     this.linkLabelChangePhoto.Click  += new System.EventHandler(this.PictureBox1Click);
     //
     // pictureBox2
     //
     resources.ApplyResources(this.pictureBox2, "pictureBox2");
     this.pictureBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.pictureBox2.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.pictureBox2.Name      = "pictureBox2";
     this.pictureBox2.TabStop   = false;
     this.pictureBox2.Click    += new System.EventHandler(this.PictureBox1Click);
     //
     // pictureBox1
     //
     resources.ApplyResources(this.pictureBox1, "pictureBox1");
     this.pictureBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.pictureBox1.Cursor    = System.Windows.Forms.Cursors.Hand;
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.TabStop   = false;
     this.pictureBox1.Click    += new System.EventHandler(this.PictureBox1Click);
     //
     // flowLayoutPanel1
     //
     resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
     this.flowLayoutPanel1.Controls.Add(this.buttonCancel);
     this.flowLayoutPanel1.Controls.Add(this.buttonSave);
     this.flowLayoutPanel1.Controls.Add(this.btnPrint);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     //
     // buttonCancel
     //
     resources.ApplyResources(this.buttonCancel, "buttonCancel");
     this.buttonCancel.Name   = "buttonCancel";
     this.buttonCancel.Click += new System.EventHandler(this.ButtonCancelClick);
     //
     // buttonSave
     //
     resources.ApplyResources(this.buttonSave, "buttonSave");
     this.buttonSave.Name   = "buttonSave";
     this.buttonSave.Click += new System.EventHandler(this.SaveCorporate);
     //
     // btnPrint
     //
     resources.ApplyResources(this.btnPrint, "btnPrint");
     this.btnPrint.AttachmentPoint         = OpenCBS.Reports.AttachmentPoint.CorporateDetails;
     this.btnPrint.Name                    = "btnPrint";
     this.btnPrint.ReportInitializer       = null;
     this.btnPrint.UseVisualStyleBackColor = true;
     this.btnPrint.Visibility              = OpenCBS.Reports.Visibility.Group;
     //
     // tabPageSavings
     //
     resources.ApplyResources(this.tabPageSavings, "tabPageSavings");
     this.tabPageSavings.Controls.Add(this.savingsListUserControl1);
     this.tabPageSavings.Name = "tabPageSavings";
     //
     // savingsListUserControl1
     //
     resources.ApplyResources(this.savingsListUserControl1, "savingsListUserControl1");
     this.savingsListUserControl1.ButtonAddSavingsEnabled = true;
     this.savingsListUserControl1.ClientType          = OpenCBS.Enums.OClientTypes.Corporate;
     this.savingsListUserControl1.Name                = "savingsListUserControl1";
     this.savingsListUserControl1.AddSelectedSaving  += new System.EventHandler(this.SavingsListUserControl1AddSelectedSaving);
     this.savingsListUserControl1.ViewSelectedSaving += new System.EventHandler(this.SavingsListUserControl1ViewSelectedSaving);
     //
     // tabPageContacts
     //
     resources.ApplyResources(this.tabPageContacts, "tabPageContacts");
     this.tabPageContacts.Controls.Add(this.tableLayoutPanel3);
     this.tabPageContacts.Name = "tabPageContacts";
     //
     // tableLayoutPanel3
     //
     resources.ApplyResources(this.tableLayoutPanel3, "tableLayoutPanel3");
     this.tableLayoutPanel3.Controls.Add(this.splitContainer1, 0, 0);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     //
     // tabPageAddress
     //
     resources.ApplyResources(this.tabPageAddress, "tabPageAddress");
     this.tabPageAddress.Controls.Add(this.groupBoxAddress);
     this.tabPageAddress.Name = "tabPageAddress";
     //
     // groupBoxAddress
     //
     resources.ApplyResources(this.groupBoxAddress, "groupBoxAddress");
     this.groupBoxAddress.Name    = "groupBoxAddress";
     this.groupBoxAddress.TabStop = false;
     //
     // tabControlCorporate
     //
     resources.ApplyResources(this.tabControlCorporate, "tabControlCorporate");
     this.tabControlCorporate.Controls.Add(this.tabPageAddress);
     this.tabControlCorporate.Controls.Add(this.tabPageContacts);
     this.tabControlCorporate.Controls.Add(this.tabPageSavings);
     this.tabControlCorporate.Multiline     = true;
     this.tabControlCorporate.Name          = "tabControlCorporate";
     this.tabControlCorporate.SelectedIndex = 0;
     this.tabControlCorporate.DoubleClick  += new System.EventHandler(this.ViewMember);
     //
     // CorporateUserControl
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.Controls.Add(this.tabControlCorporate);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.groupBoxCorporate);
     this.Name  = "CorporateUserControl";
     this.Load += new System.EventHandler(this.CorporateUserControlLoad);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBoxCorporate.ResumeLayout(false);
     this.groupBoxCorporate.PerformLayout();
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.tabPageSavings.ResumeLayout(false);
     this.tabPageContacts.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.tabPageAddress.ResumeLayout(false);
     this.tabControlCorporate.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #45
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormConnectionString));
     this.cmbConnections  = new System.Windows.Forms.ComboBox();
     this.label1          = new System.Windows.Forms.Label();
     this.label2          = new System.Windows.Forms.Label();
     this.cmbTypes        = new System.Windows.Forms.ComboBox();
     this.panel1          = new System.Windows.Forms.Panel();
     this.panel2          = new System.Windows.Forms.Panel();
     this.btnCancel       = new System.Windows.Forms.Button();
     this.button1         = new System.Windows.Forms.Button();
     this.btnOK           = new System.Windows.Forms.Button();
     this.panelParameters = new System.Windows.Forms.Panel();
     this.panel3          = new System.Windows.Forms.Panel();
     this.label3          = new System.Windows.Forms.Label();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // cmbConnections
     //
     resources.ApplyResources(this.cmbConnections, "cmbConnections");
     this.cmbConnections.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbConnections.Name                  = "cmbConnections";
     this.cmbConnections.SelectedIndexChanged += new System.EventHandler(this.cmbConnections_SelectedIndexChanged);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // cmbTypes
     //
     resources.ApplyResources(this.cmbTypes, "cmbTypes");
     this.cmbTypes.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbTypes.Name                  = "cmbTypes";
     this.cmbTypes.SelectedIndexChanged += new System.EventHandler(this.cmbTypes_SelectedIndexChanged);
     //
     // panel1
     //
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.Controls.Add(this.cmbConnections);
     this.panel1.Controls.Add(this.label1);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.cmbTypes);
     this.panel1.Name = "panel1";
     //
     // panel2
     //
     resources.ApplyResources(this.panel2, "panel2");
     this.panel2.Controls.Add(this.btnCancel);
     this.panel2.Controls.Add(this.button1);
     this.panel2.Controls.Add(this.btnOK);
     this.panel2.Name = "panel2";
     //
     // btnCancel
     //
     resources.ApplyResources(this.btnCancel, "btnCancel");
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Name         = "btnCancel";
     //
     // button1
     //
     resources.ApplyResources(this.button1, "button1");
     this.button1.Name   = "button1";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // btnOK
     //
     resources.ApplyResources(this.btnOK, "btnOK");
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Name         = "btnOK";
     this.btnOK.Click       += new System.EventHandler(this.btnOK_Click);
     //
     // panelParameters
     //
     resources.ApplyResources(this.panelParameters, "panelParameters");
     this.panelParameters.Name = "panelParameters";
     //
     // panel3
     //
     resources.ApplyResources(this.panel3, "panel3");
     this.panel3.BackColor = System.Drawing.Color.White;
     this.panel3.Controls.Add(this.label3);
     this.panel3.Controls.Add(this.pictureBox1);
     this.panel3.Name = "panel3";
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name = "label3";
     //
     // pictureBox1
     //
     resources.ApplyResources(this.pictureBox1, "pictureBox1");
     this.pictureBox1.Image   = global::gView.DB.UI.Properties.Resources.db_connect1;
     this.pictureBox1.Name    = "pictureBox1";
     this.pictureBox1.TabStop = false;
     //
     // FormConnectionString
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.panelParameters);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.panel3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "FormConnectionString";
     this.Load           += new System.EventHandler(this.FormConnectionString_Load);
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #46
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExportFeature));
     this.cmbFeatureSpecification = new System.Windows.Forms.ComboBox();
     this.label1    = new System.Windows.Forms.Label();
     this.label2    = new System.Windows.Forms.Label();
     this.txtOutput = new System.Windows.Forms.TextBox();
     this.btnBrowse = new System.Windows.Forms.Button();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnOK     = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // cmbFeatureSpecification
     //
     resources.ApplyResources(this.cmbFeatureSpecification, "cmbFeatureSpecification");
     this.cmbFeatureSpecification.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbFeatureSpecification.FormattingEnabled = true;
     this.cmbFeatureSpecification.Name = "cmbFeatureSpecification";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // txtOutput
     //
     resources.ApplyResources(this.txtOutput, "txtOutput");
     this.txtOutput.Name = "txtOutput";
     //
     // btnBrowse
     //
     resources.ApplyResources(this.btnBrowse, "btnBrowse");
     this.btnBrowse.Image = ResourceService.GetImageResource("FolderOpen_16px") as System.Drawing.Image;
     this.btnBrowse.Name  = "btnBrowse";
     this.btnBrowse.UseVisualStyleBackColor = true;
     this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
     //
     // btnCancel
     //
     resources.ApplyResources(this.btnCancel, "btnCancel");
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click                  += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     resources.ApplyResources(this.btnOK, "btnOK");
     this.btnOK.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Name                    = "btnOK";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click                  += new System.EventHandler(this.btnOK_Click);
     //
     // ExportFeature
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnBrowse);
     this.Controls.Add(this.txtOutput);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.cmbFeatureSpecification);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "ExportFeature";
     this.ShowIcon    = false;
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #47
0
 //Visual Studio
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsDialog));
     this.toolTip            = new System.Windows.Forms.ToolTip(this.components);
     this.buttonOK           = new System.Windows.Forms.Button();
     this.buttonChancel      = new System.Windows.Forms.Button();
     this.checkBoxAutoUpdate = new System.Windows.Forms.CheckBox();
     this.timerForVisible    = new System.Windows.Forms.Timer(this.components);
     this.borderPanel        = new WF.MyPanel();
     this.tableLayoutPanel   = new System.Windows.Forms.TableLayoutPanel();
     this.labelAPPID         = new System.Windows.Forms.Label();
     this.labelCity          = new System.Windows.Forms.Label();
     this.labelLanguage      = new System.Windows.Forms.Label();
     this.textBoxAPPID       = new System.Windows.Forms.TextBox();
     this.comboBoxLanguage   = new System.Windows.Forms.ComboBox();
     this.labelPassword      = new System.Windows.Forms.Label();
     this.labelUser          = new System.Windows.Forms.Label();
     this.labelPort          = new System.Windows.Forms.Label();
     this.labelIP            = new System.Windows.Forms.Label();
     this.checkBoxProxy      = new System.Windows.Forms.CheckBox();
     this.checkBoxAuthorized = new System.Windows.Forms.CheckBox();
     this.maskedTextBoxIP    = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBoxPort  = new System.Windows.Forms.MaskedTextBox();
     this.textBoxUser        = new System.Windows.Forms.TextBox();
     this.textBoxPassword    = new System.Windows.Forms.TextBox();
     this.panelButtons       = new System.Windows.Forms.Panel();
     this.comboBoxCity       = new System.Windows.Forms.ComboBox();
     this.borderPanel.SuspendLayout();
     this.tableLayoutPanel.SuspendLayout();
     this.panelButtons.SuspendLayout();
     this.SuspendLayout();
     //
     // toolTip
     //
     this.toolTip.BackColor = System.Drawing.Color.Gray;
     this.toolTip.ForeColor = System.Drawing.Color.White;
     this.toolTip.OwnerDraw = true;
     this.toolTip.Draw     += new System.Windows.Forms.DrawToolTipEventHandler(this.toolTip_Draw);
     //
     // buttonOK
     //
     resources.ApplyResources(this.buttonOK, "buttonOK");
     this.buttonOK.BackColor = System.Drawing.Color.Gray;
     this.buttonOK.ForeColor = System.Drawing.Color.White;
     this.buttonOK.Name      = "buttonOK";
     this.toolTip.SetToolTip(this.buttonOK, resources.GetString("buttonOK.ToolTip"));
     this.buttonOK.UseVisualStyleBackColor = false;
     this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
     //
     // buttonChancel
     //
     resources.ApplyResources(this.buttonChancel, "buttonChancel");
     this.buttonChancel.BackColor    = System.Drawing.Color.Gray;
     this.buttonChancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonChancel.ForeColor    = System.Drawing.Color.White;
     this.buttonChancel.Name         = "buttonChancel";
     this.toolTip.SetToolTip(this.buttonChancel, resources.GetString("buttonChancel.ToolTip"));
     this.buttonChancel.UseVisualStyleBackColor = false;
     this.buttonChancel.Click += new System.EventHandler(this.buttonChancel_Click);
     //
     // checkBoxAutoUpdate
     //
     resources.ApplyResources(this.checkBoxAutoUpdate, "checkBoxAutoUpdate");
     this.checkBoxAutoUpdate.Checked    = global::WF.Properties.Settings.Default.IsAutoUpdate;
     this.checkBoxAutoUpdate.CheckState = System.Windows.Forms.CheckState.Checked;
     this.tableLayoutPanel.SetColumnSpan(this.checkBoxAutoUpdate, 2);
     this.checkBoxAutoUpdate.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::WF.Properties.Settings.Default, "IsAutoUpdate", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.checkBoxAutoUpdate.ForeColor = System.Drawing.Color.White;
     this.checkBoxAutoUpdate.Name      = "checkBoxAutoUpdate";
     this.toolTip.SetToolTip(this.checkBoxAutoUpdate, resources.GetString("checkBoxAutoUpdate.ToolTip"));
     this.checkBoxAutoUpdate.UseVisualStyleBackColor = true;
     //
     // timerForVisible
     //
     this.timerForVisible.Interval = 40;
     this.timerForVisible.Tick    += new System.EventHandler(this.timerForVisible_Tick);
     //
     // borderPanel
     //
     resources.ApplyResources(this.borderPanel, "borderPanel");
     this.borderPanel.BackColor = System.Drawing.Color.Transparent;
     this.borderPanel.Controls.Add(this.tableLayoutPanel);
     this.borderPanel.Name = "borderPanel";
     //
     // tableLayoutPanel
     //
     this.tableLayoutPanel.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.tableLayoutPanel, "tableLayoutPanel");
     this.tableLayoutPanel.Controls.Add(this.labelAPPID, 0, 0);
     this.tableLayoutPanel.Controls.Add(this.labelCity, 0, 1);
     this.tableLayoutPanel.Controls.Add(this.labelLanguage, 0, 2);
     this.tableLayoutPanel.Controls.Add(this.textBoxAPPID, 1, 0);
     this.tableLayoutPanel.Controls.Add(this.comboBoxLanguage, 1, 2);
     this.tableLayoutPanel.Controls.Add(this.checkBoxAutoUpdate, 0, 3);
     this.tableLayoutPanel.Controls.Add(this.labelPassword, 0, 9);
     this.tableLayoutPanel.Controls.Add(this.labelUser, 0, 8);
     this.tableLayoutPanel.Controls.Add(this.labelPort, 0, 6);
     this.tableLayoutPanel.Controls.Add(this.labelIP, 0, 5);
     this.tableLayoutPanel.Controls.Add(this.checkBoxProxy, 0, 4);
     this.tableLayoutPanel.Controls.Add(this.checkBoxAuthorized, 0, 7);
     this.tableLayoutPanel.Controls.Add(this.maskedTextBoxIP, 1, 5);
     this.tableLayoutPanel.Controls.Add(this.maskedTextBoxPort, 1, 6);
     this.tableLayoutPanel.Controls.Add(this.textBoxUser, 1, 8);
     this.tableLayoutPanel.Controls.Add(this.textBoxPassword, 1, 9);
     this.tableLayoutPanel.Controls.Add(this.panelButtons, 0, 10);
     this.tableLayoutPanel.Controls.Add(this.comboBoxCity, 1, 1);
     this.tableLayoutPanel.Name = "tableLayoutPanel";
     //
     // labelAPPID
     //
     resources.ApplyResources(this.labelAPPID, "labelAPPID");
     this.labelAPPID.ForeColor = System.Drawing.Color.White;
     this.labelAPPID.Name      = "labelAPPID";
     //
     // labelCity
     //
     resources.ApplyResources(this.labelCity, "labelCity");
     this.labelCity.ForeColor = System.Drawing.Color.White;
     this.labelCity.Name      = "labelCity";
     //
     // labelLanguage
     //
     resources.ApplyResources(this.labelLanguage, "labelLanguage");
     this.labelLanguage.ForeColor = System.Drawing.Color.White;
     this.labelLanguage.Name      = "labelLanguage";
     //
     // textBoxAPPID
     //
     resources.ApplyResources(this.textBoxAPPID, "textBoxAPPID");
     this.textBoxAPPID.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::WF.Properties.Settings.Default, "OWID", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.textBoxAPPID.Name = "textBoxAPPID";
     this.textBoxAPPID.Text = global::WF.Properties.Settings.Default.OWID;
     //
     // comboBoxLanguage
     //
     resources.ApplyResources(this.comboBoxLanguage, "comboBoxLanguage");
     this.comboBoxLanguage.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxLanguage.FormattingEnabled = true;
     this.comboBoxLanguage.Name = "comboBoxLanguage";
     //
     // labelPassword
     //
     resources.ApplyResources(this.labelPassword, "labelPassword");
     this.labelPassword.ForeColor = System.Drawing.Color.White;
     this.labelPassword.Name      = "labelPassword";
     //
     // labelUser
     //
     resources.ApplyResources(this.labelUser, "labelUser");
     this.labelUser.ForeColor = System.Drawing.Color.White;
     this.labelUser.Name      = "labelUser";
     //
     // labelPort
     //
     resources.ApplyResources(this.labelPort, "labelPort");
     this.labelPort.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", global::WF.Properties.Settings.Default, "IsProxy", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.labelPort.Enabled   = global::WF.Properties.Settings.Default.IsProxy;
     this.labelPort.ForeColor = System.Drawing.Color.White;
     this.labelPort.Name      = "labelPort";
     //
     // labelIP
     //
     resources.ApplyResources(this.labelIP, "labelIP");
     this.labelIP.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", global::WF.Properties.Settings.Default, "IsProxy", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.labelIP.Enabled   = global::WF.Properties.Settings.Default.IsProxy;
     this.labelIP.ForeColor = System.Drawing.Color.White;
     this.labelIP.Name      = "labelIP";
     //
     // checkBoxProxy
     //
     resources.ApplyResources(this.checkBoxProxy, "checkBoxProxy");
     this.checkBoxProxy.Checked = global::WF.Properties.Settings.Default.IsProxy;
     this.tableLayoutPanel.SetColumnSpan(this.checkBoxProxy, 2);
     this.checkBoxProxy.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::WF.Properties.Settings.Default, "IsProxy", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.checkBoxProxy.ForeColor = System.Drawing.Color.White;
     this.checkBoxProxy.Name      = "checkBoxProxy";
     this.checkBoxProxy.UseVisualStyleBackColor = true;
     //
     // checkBoxAuthorized
     //
     resources.ApplyResources(this.checkBoxAuthorized, "checkBoxAuthorized");
     this.checkBoxAuthorized.Checked    = global::WF.Properties.Settings.Default.IsAuthorized;
     this.checkBoxAuthorized.CheckState = System.Windows.Forms.CheckState.Checked;
     this.tableLayoutPanel.SetColumnSpan(this.checkBoxAuthorized, 2);
     this.checkBoxAuthorized.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::WF.Properties.Settings.Default, "IsAuthorized", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.checkBoxAuthorized.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", global::WF.Properties.Settings.Default, "IsProxy", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.checkBoxAuthorized.Enabled   = global::WF.Properties.Settings.Default.IsProxy;
     this.checkBoxAuthorized.ForeColor = System.Drawing.Color.White;
     this.checkBoxAuthorized.Name      = "checkBoxAuthorized";
     this.checkBoxAuthorized.UseVisualStyleBackColor = true;
     this.checkBoxAuthorized.CheckedChanged         += new System.EventHandler(this.checkBoxAuthorized_CheckedChanged);
     this.checkBoxAuthorized.EnabledChanged         += new System.EventHandler(this.checkBoxAuthorized_EnabledChanged);
     //
     // maskedTextBoxIP
     //
     resources.ApplyResources(this.maskedTextBoxIP, "maskedTextBoxIP");
     this.maskedTextBoxIP.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", global::WF.Properties.Settings.Default, "IsProxy", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.maskedTextBoxIP.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::WF.Properties.Settings.Default, "ProxyIP", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.maskedTextBoxIP.Enabled = global::WF.Properties.Settings.Default.IsProxy;
     this.maskedTextBoxIP.Name    = "maskedTextBoxIP";
     this.maskedTextBoxIP.Text    = global::WF.Properties.Settings.Default.ProxyIP;
     //
     // maskedTextBoxPort
     //
     resources.ApplyResources(this.maskedTextBoxPort, "maskedTextBoxPort");
     this.maskedTextBoxPort.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", global::WF.Properties.Settings.Default, "IsProxy", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.maskedTextBoxPort.Enabled = global::WF.Properties.Settings.Default.IsProxy;
     this.maskedTextBoxPort.Name    = "maskedTextBoxPort";
     //
     // textBoxUser
     //
     resources.ApplyResources(this.textBoxUser, "textBoxUser");
     this.textBoxUser.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::WF.Properties.Settings.Default, "ProxyUser", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.textBoxUser.Name = "textBoxUser";
     this.textBoxUser.Text = global::WF.Properties.Settings.Default.ProxyUser;
     //
     // textBoxPassword
     //
     resources.ApplyResources(this.textBoxPassword, "textBoxPassword");
     this.textBoxPassword.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::WF.Properties.Settings.Default, "ProxyPassword", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.textBoxPassword.Name = "textBoxPassword";
     this.textBoxPassword.Text = global::WF.Properties.Settings.Default.ProxyPassword;
     //
     // panelButtons
     //
     resources.ApplyResources(this.panelButtons, "panelButtons");
     this.tableLayoutPanel.SetColumnSpan(this.panelButtons, 2);
     this.panelButtons.Controls.Add(this.buttonOK);
     this.panelButtons.Controls.Add(this.buttonChancel);
     this.panelButtons.Name = "panelButtons";
     //
     // comboBoxCity
     //
     resources.ApplyResources(this.comboBoxCity, "comboBoxCity");
     this.comboBoxCity.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.Suggest;
     this.comboBoxCity.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBoxCity.FormattingEnabled  = true;
     this.comboBoxCity.Name        = "comboBoxCity";
     this.comboBoxCity.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.comboBoxCity_KeyDown);
     this.comboBoxCity.Validating += new System.ComponentModel.CancelEventHandler(this.comboBoxCity_Validating);
     //
     // SettingsDialog
     //
     this.AcceptButton = this.buttonOK;
     resources.ApplyResources(this, "$this");
     this.CancelButton = this.buttonChancel;
     this.Controls.Add(this.borderPanel);
     this.DoubleBuffered  = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "SettingsDialog";
     this.Opacity         = 0D;
     this.ShowInTaskbar   = false;
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.SettingsDialog_FormClosing);
     this.Load           += new System.EventHandler(this.SettingsDialog_Load);
     this.borderPanel.ResumeLayout(false);
     this.tableLayoutPanel.ResumeLayout(false);
     this.tableLayoutPanel.PerformLayout();
     this.panelButtons.ResumeLayout(false);
     this.panelButtons.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TryAWordDlg));
     this.m_wordToTryLabel         = new System.Windows.Forms.Label();
     this.m_closeButton            = new System.Windows.Forms.Button();
     this.m_tryItButton            = new System.Windows.Forms.Button();
     this.m_resultsPanel           = new System.Windows.Forms.Panel();
     this.m_resultsLabel           = new System.Windows.Forms.Label();
     this.m_closePanel             = new System.Windows.Forms.Panel();
     this.m_statusLabel            = new System.Windows.Forms.Label();
     this.m_helpButton             = new System.Windows.Forms.Button();
     this.m_wordPanel              = new System.Windows.Forms.Panel();
     this.m_doSelectMorphsCheckBox = new System.Windows.Forms.CheckBox();
     this.m_doTraceCheckBox        = new System.Windows.Forms.CheckBox();
     this.m_wordformTextBox        = new SIL.FieldWorks.Common.Widgets.FwTextBox();
     this.m_timer        = new System.Windows.Forms.Timer(this.components);
     this.m_sandboxPanel = new System.Windows.Forms.Panel();
     this.m_resultsPanel.SuspendLayout();
     this.m_closePanel.SuspendLayout();
     this.m_wordPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_wordformTextBox)).BeginInit();
     this.SuspendLayout();
     //
     // m_wordToTryLabel
     //
     resources.ApplyResources(this.m_wordToTryLabel, "m_wordToTryLabel");
     this.m_wordToTryLabel.Name = "m_wordToTryLabel";
     //
     // m_closeButton
     //
     resources.ApplyResources(this.m_closeButton, "m_closeButton");
     this.m_closeButton.Name   = "m_closeButton";
     this.m_closeButton.Click += new System.EventHandler(this.m_closeButton_Click);
     //
     // m_tryItButton
     //
     resources.ApplyResources(this.m_tryItButton, "m_tryItButton");
     this.m_tryItButton.Name   = "m_tryItButton";
     this.m_tryItButton.Click += new System.EventHandler(this.m_tryItButton_Click);
     //
     // m_resultsPanel
     //
     this.m_resultsPanel.Controls.Add(this.m_resultsLabel);
     resources.ApplyResources(this.m_resultsPanel, "m_resultsPanel");
     this.m_resultsPanel.Name = "m_resultsPanel";
     //
     // m_resultsLabel
     //
     resources.ApplyResources(this.m_resultsLabel, "m_resultsLabel");
     this.m_resultsLabel.Name = "m_resultsLabel";
     //
     // m_closePanel
     //
     this.m_closePanel.Controls.Add(this.m_statusLabel);
     this.m_closePanel.Controls.Add(this.m_helpButton);
     this.m_closePanel.Controls.Add(this.m_closeButton);
     resources.ApplyResources(this.m_closePanel, "m_closePanel");
     this.m_closePanel.Name = "m_closePanel";
     //
     // m_statusLabel
     //
     resources.ApplyResources(this.m_statusLabel, "m_statusLabel");
     this.m_statusLabel.Name = "m_statusLabel";
     //
     // m_helpButton
     //
     resources.ApplyResources(this.m_helpButton, "m_helpButton");
     this.m_helpButton.Name   = "m_helpButton";
     this.m_helpButton.Click += new System.EventHandler(this.m_buttonHelp_Click);
     //
     // m_wordPanel
     //
     this.m_wordPanel.Controls.Add(this.m_doSelectMorphsCheckBox);
     this.m_wordPanel.Controls.Add(this.m_doTraceCheckBox);
     this.m_wordPanel.Controls.Add(this.m_tryItButton);
     this.m_wordPanel.Controls.Add(this.m_wordToTryLabel);
     this.m_wordPanel.Controls.Add(this.m_wordformTextBox);
     resources.ApplyResources(this.m_wordPanel, "m_wordPanel");
     this.m_wordPanel.Name = "m_wordPanel";
     //
     // m_doSelectMorphsCheckBox
     //
     resources.ApplyResources(this.m_doSelectMorphsCheckBox, "m_doSelectMorphsCheckBox");
     this.m_doSelectMorphsCheckBox.Name = "m_doSelectMorphsCheckBox";
     this.m_doSelectMorphsCheckBox.UseVisualStyleBackColor = true;
     this.m_doSelectMorphsCheckBox.CheckedChanged         += new System.EventHandler(this.m_doSelectMorphsCheckBox_CheckedChanged);
     //
     // m_doTraceCheckBox
     //
     resources.ApplyResources(this.m_doTraceCheckBox, "m_doTraceCheckBox");
     this.m_doTraceCheckBox.Name = "m_doTraceCheckBox";
     this.m_doTraceCheckBox.UseVisualStyleBackColor = true;
     this.m_doTraceCheckBox.CheckedChanged         += new System.EventHandler(this.m_doTraceCheckBox_CheckedChanged);
     //
     // m_wordformTextBox
     //
     this.m_wordformTextBox.AcceptsReturn      = false;
     this.m_wordformTextBox.AdjustStringHeight = true;
     this.m_wordformTextBox.BackColor          = System.Drawing.SystemColors.Window;
     this.m_wordformTextBox.controlID          = null;
     resources.ApplyResources(this.m_wordformTextBox, "m_wordformTextBox");
     this.m_wordformTextBox.HasBorder     = true;
     this.m_wordformTextBox.Name          = "m_wordformTextBox";
     this.m_wordformTextBox.SuppressEnter = true;
     this.m_wordformTextBox.WordWrap      = false;
     this.m_wordformTextBox.TextChanged  += new System.EventHandler(this.m_wordformTextBox_TextChanged);
     this.m_wordformTextBox.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.m_wordformTextBox_KeyDown);
     //
     // m_timer
     //
     this.m_timer.Enabled  = true;
     this.m_timer.Interval = 10;
     this.m_timer.Tick    += new System.EventHandler(this.m_timer_Tick);
     //
     // m_sandboxPanel
     //
     resources.ApplyResources(this.m_sandboxPanel, "m_sandboxPanel");
     this.m_sandboxPanel.Name = "m_sandboxPanel";
     //
     // TryAWordDlg
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.m_resultsPanel);
     this.Controls.Add(this.m_sandboxPanel);
     this.Controls.Add(this.m_wordPanel);
     this.Controls.Add(this.m_closePanel);
     this.Name = "TryAWordDlg";
     this.m_resultsPanel.ResumeLayout(false);
     this.m_closePanel.ResumeLayout(false);
     this.m_wordPanel.ResumeLayout(false);
     this.m_wordPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.m_wordformTextBox)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #49
0
        /// <summary>
        ///   Required method for Designer support - do not modify the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            var resources =
                new System.ComponentModel.ComponentResourceManager(typeof(SaveAsDialog));

            this.bSave    = new System.Windows.Forms.Button();
            this.bCancel  = new System.Windows.Forms.Button();
            this.label1   = new System.Windows.Forms.Label();
            this.lb       = new System.Windows.Forms.ListBox();
            this.label2   = new System.Windows.Forms.Label();
            this.tbSaveAs = new System.Windows.Forms.TextBox();
            this.SuspendLayout();
            //
            // bSave
            //
            resources.ApplyResources(this.bSave, "bSave");
            this.bSave.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.bSave.Name         = "bSave";
            this.bSave.Click       += new System.EventHandler(this.bSave_Click);
            //
            // bCancel
            //
            resources.ApplyResources(this.bCancel, "bCancel");
            this.bCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.bCancel.Name         = "bCancel";
            this.bCancel.Click       += new System.EventHandler(this.bCancel_Click);
            //
            // label1
            //
            resources.ApplyResources(this.label1, "label1");
            this.label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.label1.Name      = "label1";
            //
            // lb
            //
            resources.ApplyResources(this.lb, "lb");
            this.lb.BorderStyle           = System.Windows.Forms.BorderStyle.Fixed3D;
            this.lb.Name                  = "lb";
            this.lb.SelectedIndexChanged += new System.EventHandler(this.lb_SelectedIndexChanged);
            //
            // label2
            //
            resources.ApplyResources(this.label2, "label2");
            this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.label2.Name      = "label2";
            //
            // tbSaveAs
            //
            resources.ApplyResources(this.tbSaveAs, "tbSaveAs");
            this.tbSaveAs.BorderStyle  = System.Windows.Forms.BorderStyle.Fixed3D;
            this.tbSaveAs.Name         = "tbSaveAs";
            this.tbSaveAs.TextChanged += new System.EventHandler(this.tbSaveAs_TextChanged);
            //
            // SaveAsDialog
            //
            resources.ApplyResources(this, "$this");
            this.Controls.Add(this.tbSaveAs);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.lb);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.bCancel);
            this.Controls.Add(this.bSave);
            this.DoubleBuffered  = true;
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox     = false;
            this.MinimizeBox     = false;
            this.Name            = "SaveAsDialog";
            this.ShowInTaskbar   = false;

            this.Load += new System.EventHandler(this.SaveAsDialog_Load);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Beispiel #50
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UsabilityDemo));
     this.OutputTextBox             = new System.Windows.Forms.TextBox();
     this.DateButton                = new System.Windows.Forms.Button();
     this.CurrencyButton            = new System.Windows.Forms.Button();
     this.StringButton              = new System.Windows.Forms.Button();
     this.AppExitButton             = new System.Windows.Forms.Button();
     this.UsabilityDemoMenu         = new System.Windows.Forms.MainMenu(this.components);
     this.HelpMenu                  = new System.Windows.Forms.MenuItem();
     this.HelpMenuItem              = new System.Windows.Forms.MenuItem();
     this.UsabilityDemoHelpProvider = new System.Windows.Forms.HelpProvider();
     this.CultureButton             = new System.Windows.Forms.Button();
     this.UsabilityDemoToolTip      = new System.Windows.Forms.ToolTip(this.components);
     this.SuspendLayout();
     //
     // OutputTextBox
     //
     resources.ApplyResources(this.OutputTextBox, "OutputTextBox");
     this.UsabilityDemoHelpProvider.SetHelpKeyword(this.OutputTextBox, resources.GetString("OutputTextBox.HelpKeyword"));
     this.UsabilityDemoHelpProvider.SetHelpNavigator(this.OutputTextBox, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("OutputTextBox.HelpNavigator"))));
     this.UsabilityDemoHelpProvider.SetHelpString(this.OutputTextBox, resources.GetString("OutputTextBox.HelpString"));
     this.OutputTextBox.Name     = "OutputTextBox";
     this.OutputTextBox.ReadOnly = true;
     this.UsabilityDemoHelpProvider.SetShowHelp(this.OutputTextBox, ((bool)(resources.GetObject("OutputTextBox.ShowHelp"))));
     this.OutputTextBox.TabStop = false;
     this.UsabilityDemoToolTip.SetToolTip(this.OutputTextBox, resources.GetString("OutputTextBox.ToolTip"));
     //
     // DateButton
     //
     resources.ApplyResources(this.DateButton, "DateButton");
     this.UsabilityDemoHelpProvider.SetHelpKeyword(this.DateButton, resources.GetString("DateButton.HelpKeyword"));
     this.UsabilityDemoHelpProvider.SetHelpNavigator(this.DateButton, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("DateButton.HelpNavigator"))));
     this.UsabilityDemoHelpProvider.SetHelpString(this.DateButton, resources.GetString("DateButton.HelpString"));
     this.DateButton.Name = "DateButton";
     this.UsabilityDemoHelpProvider.SetShowHelp(this.DateButton, ((bool)(resources.GetObject("DateButton.ShowHelp"))));
     this.UsabilityDemoToolTip.SetToolTip(this.DateButton, resources.GetString("DateButton.ToolTip"));
     this.DateButton.Click += new System.EventHandler(this.DateButton_Click);
     //
     // CurrencyButton
     //
     resources.ApplyResources(this.CurrencyButton, "CurrencyButton");
     this.UsabilityDemoHelpProvider.SetHelpKeyword(this.CurrencyButton, resources.GetString("CurrencyButton.HelpKeyword"));
     this.UsabilityDemoHelpProvider.SetHelpNavigator(this.CurrencyButton, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("CurrencyButton.HelpNavigator"))));
     this.UsabilityDemoHelpProvider.SetHelpString(this.CurrencyButton, resources.GetString("CurrencyButton.HelpString"));
     this.CurrencyButton.Name = "CurrencyButton";
     this.UsabilityDemoHelpProvider.SetShowHelp(this.CurrencyButton, ((bool)(resources.GetObject("CurrencyButton.ShowHelp"))));
     this.UsabilityDemoToolTip.SetToolTip(this.CurrencyButton, resources.GetString("CurrencyButton.ToolTip"));
     this.CurrencyButton.Click += new System.EventHandler(this.CurrencyButton_Click);
     //
     // StringButton
     //
     resources.ApplyResources(this.StringButton, "StringButton");
     this.UsabilityDemoHelpProvider.SetHelpKeyword(this.StringButton, resources.GetString("StringButton.HelpKeyword"));
     this.UsabilityDemoHelpProvider.SetHelpNavigator(this.StringButton, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("StringButton.HelpNavigator"))));
     this.UsabilityDemoHelpProvider.SetHelpString(this.StringButton, resources.GetString("StringButton.HelpString"));
     this.StringButton.Name = "StringButton";
     this.UsabilityDemoHelpProvider.SetShowHelp(this.StringButton, ((bool)(resources.GetObject("StringButton.ShowHelp"))));
     this.UsabilityDemoToolTip.SetToolTip(this.StringButton, resources.GetString("StringButton.ToolTip"));
     this.StringButton.Click += new System.EventHandler(this.StringButton_Click);
     //
     // AppExitButton
     //
     resources.ApplyResources(this.AppExitButton, "AppExitButton");
     this.UsabilityDemoHelpProvider.SetHelpKeyword(this.AppExitButton, resources.GetString("AppExitButton.HelpKeyword"));
     this.UsabilityDemoHelpProvider.SetHelpNavigator(this.AppExitButton, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("AppExitButton.HelpNavigator"))));
     this.UsabilityDemoHelpProvider.SetHelpString(this.AppExitButton, resources.GetString("AppExitButton.HelpString"));
     this.AppExitButton.Name = "AppExitButton";
     this.UsabilityDemoHelpProvider.SetShowHelp(this.AppExitButton, ((bool)(resources.GetObject("AppExitButton.ShowHelp"))));
     this.UsabilityDemoToolTip.SetToolTip(this.AppExitButton, resources.GetString("AppExitButton.ToolTip"));
     this.AppExitButton.Click += new System.EventHandler(this.AppExitButton_Click);
     //
     // UsabilityDemoMenu
     //
     this.UsabilityDemoMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.HelpMenu
     });
     resources.ApplyResources(this.UsabilityDemoMenu, "UsabilityDemoMenu");
     //
     // HelpMenu
     //
     resources.ApplyResources(this.HelpMenu, "HelpMenu");
     this.HelpMenu.Index = 0;
     this.HelpMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.HelpMenuItem
     });
     //
     // HelpMenuItem
     //
     resources.ApplyResources(this.HelpMenuItem, "HelpMenuItem");
     this.HelpMenuItem.Index  = 0;
     this.HelpMenuItem.Click += new System.EventHandler(this.HelpMenuItem_Click);
     //
     // UsabilityDemoHelpProvider
     //
     resources.ApplyResources(this.UsabilityDemoHelpProvider, "UsabilityDemoHelpProvider");
     //
     // CultureButton
     //
     resources.ApplyResources(this.CultureButton, "CultureButton");
     this.UsabilityDemoHelpProvider.SetHelpKeyword(this.CultureButton, resources.GetString("CultureButton.HelpKeyword"));
     this.UsabilityDemoHelpProvider.SetHelpNavigator(this.CultureButton, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("CultureButton.HelpNavigator"))));
     this.UsabilityDemoHelpProvider.SetHelpString(this.CultureButton, resources.GetString("CultureButton.HelpString"));
     this.CultureButton.Name = "CultureButton";
     this.UsabilityDemoHelpProvider.SetShowHelp(this.CultureButton, ((bool)(resources.GetObject("CultureButton.ShowHelp"))));
     this.UsabilityDemoToolTip.SetToolTip(this.CultureButton, resources.GetString("CultureButton.ToolTip"));
     this.CultureButton.Click += new System.EventHandler(this.CultureButton_Click);
     //
     // UsabilityDemo
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.CultureButton);
     this.Controls.Add(this.AppExitButton);
     this.Controls.Add(this.StringButton);
     this.Controls.Add(this.CurrencyButton);
     this.Controls.Add(this.DateButton);
     this.Controls.Add(this.OutputTextBox);
     this.HelpButton = true;
     this.UsabilityDemoHelpProvider.SetHelpKeyword(this, resources.GetString("$this.HelpKeyword"));
     this.UsabilityDemoHelpProvider.SetHelpNavigator(this, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("$this.HelpNavigator"))));
     this.UsabilityDemoHelpProvider.SetHelpString(this, resources.GetString("$this.HelpString"));
     this.MaximizeBox = false;
     this.Menu        = this.UsabilityDemoMenu;
     this.MinimizeBox = false;
     this.Name        = "UsabilityDemo";
     this.UsabilityDemoHelpProvider.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
     this.UsabilityDemoToolTip.SetToolTip(this, resources.GetString("$this.ToolTip"));
     this.Load += new System.EventHandler(this.UsabilityDemo_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SQLQueryControl));
     this.lblMax             = new System.Windows.Forms.Label();
     this.lblMin             = new System.Windows.Forms.Label();
     this.label2             = new System.Windows.Forms.Label();
     this.label1             = new System.Windows.Forms.Label();
     this.lblFields          = new System.Windows.Forms.Label();
     this.lblUniqueValues    = new System.Windows.Forms.Label();
     this.lblSelectPrecursor = new System.Windows.Forms.Label();
     this.rtbFilterText      = new System.Windows.Forms.RichTextBox();
     this.btnGetUniqueValues = new System.Windows.Forms.Button();
     this.btnNot             = new System.Windows.Forms.Button();
     this.btnParenthasis     = new System.Windows.Forms.Button();
     this.btnAsterix         = new System.Windows.Forms.Button();
     this.btnOr = new System.Windows.Forms.Button();
     this.btnLessThanOrEqual    = new System.Windows.Forms.Button();
     this.btnLessThan           = new System.Windows.Forms.Button();
     this.btnAnd                = new System.Windows.Forms.Button();
     this.btnGreaterThanOrEqual = new System.Windows.Forms.Button();
     this.btnGreaterThan        = new System.Windows.Forms.Button();
     this.btnLike               = new System.Windows.Forms.Button();
     this.btnNotEqual           = new System.Windows.Forms.Button();
     this.btnEquals             = new System.Windows.Forms.Button();
     this.lbxUniqueValues       = new System.Windows.Forms.ListBox();
     this.lbxFields             = new System.Windows.Forms.ListBox();
     this.btnNull               = new System.Windows.Forms.Button();
     this.btnNotNull            = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // lblMax
     //
     resources.ApplyResources(this.lblMax, "lblMax");
     this.lblMax.AutoEllipsis = true;
     this.lblMax.BackColor    = System.Drawing.Color.White;
     this.lblMax.BorderStyle  = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblMax.Name         = "lblMax";
     //
     // lblMin
     //
     resources.ApplyResources(this.lblMin, "lblMin");
     this.lblMin.AutoEllipsis = true;
     this.lblMin.BackColor    = System.Drawing.Color.White;
     this.lblMin.BorderStyle  = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblMin.Name         = "lblMin";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // lblFields
     //
     resources.ApplyResources(this.lblFields, "lblFields");
     this.lblFields.Name = "lblFields";
     //
     // lblUniqueValues
     //
     resources.ApplyResources(this.lblUniqueValues, "lblUniqueValues");
     this.lblUniqueValues.Name = "lblUniqueValues";
     //
     // lblSelectPrecursor
     //
     resources.ApplyResources(this.lblSelectPrecursor, "lblSelectPrecursor");
     this.lblSelectPrecursor.Name = "lblSelectPrecursor";
     //
     // rtbFilterText
     //
     resources.ApplyResources(this.rtbFilterText, "rtbFilterText");
     this.rtbFilterText.Name         = "rtbFilterText";
     this.rtbFilterText.TextChanged += new System.EventHandler(this.rtbFilterText_TextChanged);
     //
     // btnGetUniqueValues
     //
     resources.ApplyResources(this.btnGetUniqueValues, "btnGetUniqueValues");
     this.btnGetUniqueValues.Name = "btnGetUniqueValues";
     this.btnGetUniqueValues.UseVisualStyleBackColor = true;
     this.btnGetUniqueValues.Click += new System.EventHandler(this.btnGetUniqueValues_Click);
     //
     // btnNot
     //
     resources.ApplyResources(this.btnNot, "btnNot");
     this.btnNot.Name = "btnNot";
     this.btnNot.UseVisualStyleBackColor = true;
     this.btnNot.Click += new System.EventHandler(this.btnNot_Click);
     //
     // btnParenthasis
     //
     resources.ApplyResources(this.btnParenthasis, "btnParenthasis");
     this.btnParenthasis.Name = "btnParenthasis";
     this.btnParenthasis.UseVisualStyleBackColor = true;
     this.btnParenthasis.Click += new System.EventHandler(this.btnParenthasis_Click);
     //
     // btnAsterix
     //
     resources.ApplyResources(this.btnAsterix, "btnAsterix");
     this.btnAsterix.Name = "btnAsterix";
     this.btnAsterix.UseVisualStyleBackColor = true;
     this.btnAsterix.Click += new System.EventHandler(this.btnAsterix_Click);
     //
     // btnOr
     //
     resources.ApplyResources(this.btnOr, "btnOr");
     this.btnOr.Name = "btnOr";
     this.btnOr.UseVisualStyleBackColor = true;
     this.btnOr.Click += new System.EventHandler(this.btnOr_Click);
     //
     // btnLessThanOrEqual
     //
     resources.ApplyResources(this.btnLessThanOrEqual, "btnLessThanOrEqual");
     this.btnLessThanOrEqual.Name = "btnLessThanOrEqual";
     this.btnLessThanOrEqual.UseVisualStyleBackColor = true;
     this.btnLessThanOrEqual.Click += new System.EventHandler(this.btnLessThanOrEqual_Click);
     //
     // btnLessThan
     //
     resources.ApplyResources(this.btnLessThan, "btnLessThan");
     this.btnLessThan.Name = "btnLessThan";
     this.btnLessThan.UseVisualStyleBackColor = true;
     this.btnLessThan.Click += new System.EventHandler(this.btnLessThan_Click);
     //
     // btnAnd
     //
     resources.ApplyResources(this.btnAnd, "btnAnd");
     this.btnAnd.Name = "btnAnd";
     this.btnAnd.UseVisualStyleBackColor = true;
     this.btnAnd.Click += new System.EventHandler(this.btnAnd_Click);
     //
     // btnGreaterThanOrEqual
     //
     resources.ApplyResources(this.btnGreaterThanOrEqual, "btnGreaterThanOrEqual");
     this.btnGreaterThanOrEqual.Name = "btnGreaterThanOrEqual";
     this.btnGreaterThanOrEqual.UseVisualStyleBackColor = true;
     this.btnGreaterThanOrEqual.Click += new System.EventHandler(this.btnGreaterThanOrEqual_Click);
     //
     // btnGreaterThan
     //
     resources.ApplyResources(this.btnGreaterThan, "btnGreaterThan");
     this.btnGreaterThan.Name = "btnGreaterThan";
     this.btnGreaterThan.UseVisualStyleBackColor = true;
     this.btnGreaterThan.Click += new System.EventHandler(this.btnGreaterThan_Click);
     //
     // btnLike
     //
     resources.ApplyResources(this.btnLike, "btnLike");
     this.btnLike.Name = "btnLike";
     this.btnLike.UseVisualStyleBackColor = true;
     this.btnLike.Click += new System.EventHandler(this.btnLike_Click);
     //
     // btnNotEqual
     //
     resources.ApplyResources(this.btnNotEqual, "btnNotEqual");
     this.btnNotEqual.Name = "btnNotEqual";
     this.btnNotEqual.UseVisualStyleBackColor = true;
     this.btnNotEqual.Click += new System.EventHandler(this.btnNotEqual_Click);
     //
     // btnEquals
     //
     resources.ApplyResources(this.btnEquals, "btnEquals");
     this.btnEquals.Name = "btnEquals";
     this.btnEquals.UseVisualStyleBackColor = true;
     this.btnEquals.Click += new System.EventHandler(this.btnEquals_Click);
     //
     // lbxUniqueValues
     //
     resources.ApplyResources(this.lbxUniqueValues, "lbxUniqueValues");
     this.lbxUniqueValues.BackColor         = System.Drawing.SystemColors.Control;
     this.lbxUniqueValues.FormattingEnabled = true;
     this.lbxUniqueValues.Name         = "lbxUniqueValues";
     this.lbxUniqueValues.DoubleClick += new System.EventHandler(this.lbxUniqueValues_DoubleClick);
     //
     // lbxFields
     //
     resources.ApplyResources(this.lbxFields, "lbxFields");
     this.lbxFields.FormattingEnabled = true;
     this.lbxFields.Name = "lbxFields";
     this.lbxFields.SelectedIndexChanged += new System.EventHandler(this.lbxFields_SelectedIndexChanged);
     this.lbxFields.DoubleClick          += new System.EventHandler(this.lbxFields_DoubleClick);
     //
     // btnNull
     //
     resources.ApplyResources(this.btnNull, "btnNull");
     this.btnNull.Name = "btnNull";
     this.btnNull.UseVisualStyleBackColor = true;
     this.btnNull.Click += new System.EventHandler(this.btnNull_Click);
     //
     // btnNotNull
     //
     resources.ApplyResources(this.btnNotNull, "btnNotNull");
     this.btnNotNull.Name = "btnNotNull";
     this.btnNotNull.UseVisualStyleBackColor = true;
     this.btnNotNull.Click += new System.EventHandler(this.btnNotNull_Click);
     //
     // SQLQueryControl
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.btnNotNull);
     this.Controls.Add(this.btnNull);
     this.Controls.Add(this.lblMax);
     this.Controls.Add(this.lblMin);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.lblFields);
     this.Controls.Add(this.lblUniqueValues);
     this.Controls.Add(this.lblSelectPrecursor);
     this.Controls.Add(this.rtbFilterText);
     this.Controls.Add(this.btnGetUniqueValues);
     this.Controls.Add(this.btnNot);
     this.Controls.Add(this.btnParenthasis);
     this.Controls.Add(this.btnAsterix);
     this.Controls.Add(this.btnOr);
     this.Controls.Add(this.btnLessThanOrEqual);
     this.Controls.Add(this.btnLessThan);
     this.Controls.Add(this.btnAnd);
     this.Controls.Add(this.btnGreaterThanOrEqual);
     this.Controls.Add(this.btnGreaterThan);
     this.Controls.Add(this.btnLike);
     this.Controls.Add(this.btnNotEqual);
     this.Controls.Add(this.btnEquals);
     this.Controls.Add(this.lbxUniqueValues);
     this.Controls.Add(this.lbxFields);
     this.Name = "SQLQueryControl";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ErrorReporter));
     this.m_reproduce            = new System.Windows.Forms.TextBox();
     this.radEmail               = new System.Windows.Forms.RadioButton();
     this.m_details              = new System.Windows.Forms.TextBox();
     this.lbl_EmailReport        = new System.Windows.Forms.Label();
     this.radSelf                = new System.Windows.Forms.RadioButton();
     this.btnClose               = new System.Windows.Forms.Button();
     this.m_notification         = new System.Windows.Forms.TextBox();
     this.labelAttemptToContinue = new System.Windows.Forms.Label();
     this.viewDetailsLink        = new System.Windows.Forms.LinkLabel();
     this.m_stepsLabel           = new System.Windows.Forms.Label();
     this.cancelButton           = new System.Windows.Forms.Button();
     this.lbl_AdditionInfo       = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // m_reproduce
     //
     this.m_reproduce.AcceptsReturn = true;
     this.m_reproduce.AcceptsTab    = true;
     resources.ApplyResources(this.m_reproduce, "m_reproduce");
     this.m_reproduce.Name         = "m_reproduce";
     this.m_reproduce.TextChanged += new System.EventHandler(this.m_reproduce_TextChanged);
     //
     // radEmail
     //
     resources.ApplyResources(this.radEmail, "radEmail");
     this.radEmail.BackColor = System.Drawing.Color.Transparent;
     this.radEmail.Checked   = true;
     this.radEmail.Name      = "radEmail";
     this.radEmail.TabStop   = true;
     this.radEmail.UseVisualStyleBackColor = false;
     //
     // m_details
     //
     resources.ApplyResources(this.m_details, "m_details");
     this.m_details.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.m_details.Name      = "m_details";
     this.m_details.ReadOnly  = true;
     //
     // lbl_EmailReport
     //
     resources.ApplyResources(this.lbl_EmailReport, "lbl_EmailReport");
     this.lbl_EmailReport.BackColor = System.Drawing.Color.Transparent;
     this.lbl_EmailReport.Name      = "lbl_EmailReport";
     //
     // radSelf
     //
     resources.ApplyResources(this.radSelf, "radSelf");
     this.radSelf.BackColor = System.Drawing.Color.Transparent;
     this.radSelf.Name      = "radSelf";
     this.radSelf.UseVisualStyleBackColor = false;
     //
     // btnClose
     //
     resources.ApplyResources(this.btnClose, "btnClose");
     this.btnClose.Name   = "btnClose";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // m_notification
     //
     resources.ApplyResources(this.m_notification, "m_notification");
     this.m_notification.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.m_notification.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.m_notification.ForeColor   = System.Drawing.Color.Black;
     this.m_notification.Name        = "m_notification";
     this.m_notification.ReadOnly    = true;
     //
     // labelAttemptToContinue
     //
     resources.ApplyResources(this.labelAttemptToContinue, "labelAttemptToContinue");
     this.labelAttemptToContinue.BackColor = System.Drawing.Color.Transparent;
     this.labelAttemptToContinue.ForeColor = System.Drawing.Color.Firebrick;
     this.labelAttemptToContinue.Name      = "labelAttemptToContinue";
     //
     // viewDetailsLink
     //
     resources.ApplyResources(this.viewDetailsLink, "viewDetailsLink");
     this.viewDetailsLink.Name         = "viewDetailsLink";
     this.viewDetailsLink.TabStop      = true;
     this.viewDetailsLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.viewDetailsLink_LinkClicked);
     //
     // m_stepsLabel
     //
     resources.ApplyResources(this.m_stepsLabel, "m_stepsLabel");
     this.m_stepsLabel.BackColor = System.Drawing.Color.Transparent;
     this.m_stepsLabel.Name      = "m_stepsLabel";
     //
     // cancelButton
     //
     resources.ApplyResources(this.cancelButton, "cancelButton");
     this.cancelButton.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Name                    = "cancelButton";
     this.cancelButton.UseVisualStyleBackColor = true;
     this.cancelButton.Click                  += new System.EventHandler(this.cancelButton_Click);
     //
     // lbl_AdditionInfo
     //
     resources.ApplyResources(this.lbl_AdditionInfo, "lbl_AdditionInfo");
     this.lbl_AdditionInfo.BackColor = System.Drawing.Color.Transparent;
     this.lbl_AdditionInfo.Name      = "lbl_AdditionInfo";
     //
     // ErrorReporter
     //
     this.AcceptButton = this.btnClose;
     resources.ApplyResources(this, "$this");
     this.BackColor    = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.CancelButton = this.cancelButton;
     this.ControlBox   = false;
     this.Controls.Add(this.lbl_AdditionInfo);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.viewDetailsLink);
     this.Controls.Add(this.m_reproduce);
     this.Controls.Add(this.m_notification);
     this.Controls.Add(this.m_details);
     this.Controls.Add(this.labelAttemptToContinue);
     this.Controls.Add(this.m_stepsLabel);
     this.Controls.Add(this.lbl_EmailReport);
     this.Controls.Add(this.radEmail);
     this.Controls.Add(this.radSelf);
     this.Controls.Add(this.btnClose);
     this.KeyPreview    = true;
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "ErrorReporter";
     this.ShowIcon      = false;
     this.AutoScaleMode = AutoScaleMode.Font;
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        /// <summary>
        ///   Required method for Designer support - do not modify the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            var resources =
                new System.ComponentModel.ComponentResourceManager(typeof(TypesList));

            this.tvTypes  = new System.Windows.Forms.TreeView();
            this.panel1   = new System.Windows.Forms.Panel();
            this.bnOk     = new System.Windows.Forms.Button();
            this.bnCancel = new System.Windows.Forms.Button();
            this.panel2   = new System.Windows.Forms.Panel();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.SuspendLayout();
            //
            // tvTypes
            //
            this.tvTypes.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.tvTypes.CheckBoxes  = true;
            resources.ApplyResources(this.tvTypes, "tvTypes");
            this.tvTypes.FullRowSelect = true;
            this.tvTypes.ItemHeight    = 16;
            this.tvTypes.Name          = "tvTypes";
            this.tvTypes.AfterCheck   += new System.Windows.Forms.TreeViewEventHandler(this.tvTypes_AfterCheck);
            //
            // panel1
            //
            this.panel1.Controls.Add(this.bnOk);
            this.panel1.Controls.Add(this.bnCancel);
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.Name = "panel1";
            //
            // bnOk
            //
            resources.ApplyResources(this.bnOk, "bnOk");
            this.bnOk.Name   = "bnOk";
            this.bnOk.Click += new System.EventHandler(this.bnOk_Click);
            //
            // bnCancel
            //
            this.bnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            resources.ApplyResources(this.bnCancel, "bnCancel");
            this.bnCancel.Name   = "bnCancel";
            this.bnCancel.Click += new System.EventHandler(this.bnCancel_Click);
            //
            // panel2
            //
            this.panel2.Controls.Add(this.tvTypes);
            resources.ApplyResources(this.panel2, "panel2");
            this.panel2.Name = "panel2";
            //
            // TypesList
            //
            this.AcceptButton = this.bnOk;
            resources.ApplyResources(this, "$this");
            this.CancelButton = this.bnCancel;
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel1);
            this.DoubleBuffered = true;
            this.Name           = "TypesList";

            this.panel1.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.ResumeLayout(false);
        }
Beispiel #54
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(EPGPropertiesForm));
     this.label1          = new System.Windows.Forms.Label();
     this._epgNameTextBox = new System.Windows.Forms.TextBox();
     this._okButton       = new System.Windows.Forms.Button();
     this._cancelButton   = new System.Windows.Forms.Button();
     this._extIDTextBox   = new System.Windows.Forms.TextBox();
     this.label2          = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // _epgNameTextBox
     //
     resources.ApplyResources(this._epgNameTextBox, "_epgNameTextBox");
     this._epgNameTextBox.Name         = "_epgNameTextBox";
     this._epgNameTextBox.TextChanged += new System.EventHandler(this._epgNameTextBox_TextChanged);
     //
     // _okButton
     //
     this._okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     resources.ApplyResources(this._okButton, "_okButton");
     this._okButton.Name = "_okButton";
     //
     // _cancelButton
     //
     this._cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     resources.ApplyResources(this._cancelButton, "_cancelButton");
     this._cancelButton.Name = "_cancelButton";
     //
     // _extIDTextBox
     //
     resources.ApplyResources(this._extIDTextBox, "_extIDTextBox");
     this._extIDTextBox.Name = "_extIDTextBox";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // EPGPropertiesForm
     //
     this.AcceptButton = this._okButton;
     resources.ApplyResources(this, "$this");
     this.CancelButton = this._cancelButton;
     this.Controls.Add(this._extIDTextBox);
     this.Controls.Add(this._epgNameTextBox);
     this.Controls.Add(this.label2);
     this.Controls.Add(this._cancelButton);
     this.Controls.Add(this._okButton);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "EPGPropertiesForm";
     this.ShowInTaskbar   = false;
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.Form_Closing);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RasterCategoryControl));
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle     dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.ttHelp              = new System.Windows.Forms.ToolTip(this.components);
     this.btnQuick            = new System.Windows.Forms.Button();
     this.btnRamp             = new System.Windows.Forms.Button();
     this.cmdRefresh          = new System.Windows.Forms.Button();
     this.tabScheme           = new System.Windows.Forms.TabControl();
     this.tabStatistics       = new System.Windows.Forms.TabPage();
     this.nudSigFig           = new System.Windows.Forms.NumericUpDown();
     this.lblSigFig           = new System.Windows.Forms.Label();
     this.label1              = new System.Windows.Forms.Label();
     this.cmbIntervalSnapping = new System.Windows.Forms.ComboBox();
     this.dgvStatistics       = new System.Windows.Forms.DataGridView();
     this.Stat                     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Value                    = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.label2                   = new System.Windows.Forms.Label();
     this.cmbInterval              = new System.Windows.Forms.ComboBox();
     this.nudCategoryCount         = new System.Windows.Forms.NumericUpDown();
     this.lblBreaks                = new System.Windows.Forms.Label();
     this.tabGraph                 = new System.Windows.Forms.TabPage();
     this.lblColumns               = new System.Windows.Forms.Label();
     this.nudColumns               = new System.Windows.Forms.NumericUpDown();
     this.chkLog                   = new System.Windows.Forms.CheckBox();
     this.chkShowStd               = new System.Windows.Forms.CheckBox();
     this.chkShowMean              = new System.Windows.Forms.CheckBox();
     this.dgvCategories            = new System.Windows.Forms.DataGridView();
     this.colSymbol                = new System.Windows.Forms.DataGridViewImageColumn();
     this.colValues                = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colLegendText            = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colCount                 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.chkHillshade             = new System.Windows.Forms.CheckBox();
     this.btnShadedRelief          = new System.Windows.Forms.Button();
     this.grpHillshade             = new System.Windows.Forms.GroupBox();
     this.btnElevation             = new System.Windows.Forms.Button();
     this.dataGridViewImageColumn1 = new System.Windows.Forms.DataGridViewImageColumn();
     this.btnAdd                   = new System.Windows.Forms.Button();
     this.btnDelete                = new System.Windows.Forms.Button();
     this.groupBox1                = new System.Windows.Forms.GroupBox();
     this.opacityNoData            = new RampSlider();
     this.colorNoData              = new ColorButton();
     this.sldSchemeOpacity         = new RampSlider();
     this.angLightDirection        = new AngleControl();
     this.dbxElevationFactor       = new DoubleBox();
     this.mwProgressBar1           = new SymbologyProgressBar();
     this.tccColorRange            = new TabColorControl();
     this.dbxMax                   = new DoubleBox();
     this.dbxMin                   = new DoubleBox();
     this.breakSliderGraph1        = new BreakSliderGraph();
     this.tabScheme.SuspendLayout();
     this.tabStatistics.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudSigFig)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatistics)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudCategoryCount)).BeginInit();
     this.tabGraph.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudColumns)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCategories)).BeginInit();
     this.grpHillshade.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnQuick
     //
     resources.ApplyResources(this.btnQuick, "btnQuick");
     this.btnQuick.Name = "btnQuick";
     this.ttHelp.SetToolTip(this.btnQuick, resources.GetString("btnQuick.ToolTip"));
     this.btnQuick.UseVisualStyleBackColor = true;
     this.btnQuick.Click += new System.EventHandler(this.btnQuick_Click);
     //
     // btnRamp
     //
     resources.ApplyResources(this.btnRamp, "btnRamp");
     this.btnRamp.Name = "btnRamp";
     this.ttHelp.SetToolTip(this.btnRamp, resources.GetString("btnRamp.ToolTip"));
     this.btnRamp.UseVisualStyleBackColor = true;
     this.btnRamp.Click += new System.EventHandler(this.btnRamp_Click);
     //
     // cmdRefresh
     //
     resources.ApplyResources(this.cmdRefresh, "cmdRefresh");
     this.cmdRefresh.Name = "cmdRefresh";
     this.ttHelp.SetToolTip(this.cmdRefresh, resources.GetString("cmdRefresh.ToolTip"));
     this.cmdRefresh.UseVisualStyleBackColor = true;
     this.cmdRefresh.Click += new System.EventHandler(this.cmdRefresh_Click);
     //
     // tabScheme
     //
     this.tabScheme.Controls.Add(this.tabStatistics);
     this.tabScheme.Controls.Add(this.tabGraph);
     resources.ApplyResources(this.tabScheme, "tabScheme");
     this.tabScheme.Name          = "tabScheme";
     this.tabScheme.SelectedIndex = 0;
     //
     // tabStatistics
     //
     this.tabStatistics.Controls.Add(this.dbxMax);
     this.tabStatistics.Controls.Add(this.dbxMin);
     this.tabStatistics.Controls.Add(this.nudSigFig);
     this.tabStatistics.Controls.Add(this.lblSigFig);
     this.tabStatistics.Controls.Add(this.label1);
     this.tabStatistics.Controls.Add(this.cmbIntervalSnapping);
     this.tabStatistics.Controls.Add(this.dgvStatistics);
     this.tabStatistics.Controls.Add(this.label2);
     this.tabStatistics.Controls.Add(this.cmbInterval);
     this.tabStatistics.Controls.Add(this.nudCategoryCount);
     this.tabStatistics.Controls.Add(this.lblBreaks);
     resources.ApplyResources(this.tabStatistics, "tabStatistics");
     this.tabStatistics.Name = "tabStatistics";
     this.tabStatistics.UseVisualStyleBackColor = true;
     //
     // nudSigFig
     //
     resources.ApplyResources(this.nudSigFig, "nudSigFig");
     this.nudSigFig.Maximum = new decimal(new int[] {
         16,
         0,
         0,
         0
     });
     this.nudSigFig.Name          = "nudSigFig";
     this.nudSigFig.ValueChanged += new System.EventHandler(this.nudSigFig_ValueChanged);
     //
     // lblSigFig
     //
     resources.ApplyResources(this.lblSigFig, "lblSigFig");
     this.lblSigFig.Name = "lblSigFig";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // cmbIntervalSnapping
     //
     this.cmbIntervalSnapping.FormattingEnabled = true;
     resources.ApplyResources(this.cmbIntervalSnapping, "cmbIntervalSnapping");
     this.cmbIntervalSnapping.Name = "cmbIntervalSnapping";
     this.cmbIntervalSnapping.SelectedIndexChanged += new System.EventHandler(this.cmbIntervalSnapping_SelectedIndexChanged);
     //
     // dgvStatistics
     //
     this.dgvStatistics.AllowUserToAddRows              = false;
     this.dgvStatistics.AllowUserToDeleteRows           = false;
     dataGridViewCellStyle1.BackColor                   = System.Drawing.Color.AntiqueWhite;
     this.dgvStatistics.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dgvStatistics.BackgroundColor                 = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Alignment                   = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle2.BackColor                   = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font                      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor                 = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor        = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor        = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode                  = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvStatistics.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dgvStatistics.ColumnHeadersHeightSizeMode   = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvStatistics.ColumnHeadersVisible          = false;
     this.dgvStatistics.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.Stat,
         this.Value
     });
     resources.ApplyResources(this.dgvStatistics, "dgvStatistics");
     this.dgvStatistics.Name = "dgvStatistics";
     this.dgvStatistics.RowHeadersVisible = false;
     this.dgvStatistics.ShowCellErrors    = false;
     //
     // Stat
     //
     resources.ApplyResources(this.Stat, "Stat");
     this.Stat.Name = "Stat";
     //
     // Value
     //
     this.Value.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     resources.ApplyResources(this.Value, "Value");
     this.Value.Name = "Value";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // cmbInterval
     //
     this.cmbInterval.FormattingEnabled = true;
     this.cmbInterval.Items.AddRange(new object[] {
         resources.GetString("cmbInterval.Items"),
         resources.GetString("cmbInterval.Items1"),
         resources.GetString("cmbInterval.Items2")
     });
     resources.ApplyResources(this.cmbInterval, "cmbInterval");
     this.cmbInterval.Name = "cmbInterval";
     this.cmbInterval.SelectedIndexChanged += new System.EventHandler(this.cmbInterval_SelectedIndexChanged);
     //
     // nudCategoryCount
     //
     resources.ApplyResources(this.nudCategoryCount, "nudCategoryCount");
     this.nudCategoryCount.Name  = "nudCategoryCount";
     this.nudCategoryCount.Value = new decimal(new int[] {
         5,
         0,
         0,
         0
     });
     this.nudCategoryCount.ValueChanged += new System.EventHandler(this.nudCategoryCount_ValueChanged);
     //
     // lblBreaks
     //
     resources.ApplyResources(this.lblBreaks, "lblBreaks");
     this.lblBreaks.Name = "lblBreaks";
     //
     // tabGraph
     //
     this.tabGraph.Controls.Add(this.lblColumns);
     this.tabGraph.Controls.Add(this.nudColumns);
     this.tabGraph.Controls.Add(this.chkLog);
     this.tabGraph.Controls.Add(this.chkShowStd);
     this.tabGraph.Controls.Add(this.chkShowMean);
     this.tabGraph.Controls.Add(this.breakSliderGraph1);
     resources.ApplyResources(this.tabGraph, "tabGraph");
     this.tabGraph.Name = "tabGraph";
     this.tabGraph.UseVisualStyleBackColor = true;
     //
     // lblColumns
     //
     resources.ApplyResources(this.lblColumns, "lblColumns");
     this.lblColumns.Name = "lblColumns";
     //
     // nudColumns
     //
     this.nudColumns.Increment = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     resources.ApplyResources(this.nudColumns, "nudColumns");
     this.nudColumns.Maximum = new decimal(new int[] {
         1000,
         0,
         0,
         0
     });
     this.nudColumns.Minimum = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.nudColumns.Name  = "nudColumns";
     this.nudColumns.Value = new decimal(new int[] {
         40,
         0,
         0,
         0
     });
     this.nudColumns.ValueChanged += new System.EventHandler(this.nudColumns_ValueChanged);
     //
     // chkLog
     //
     resources.ApplyResources(this.chkLog, "chkLog");
     this.chkLog.Name = "chkLog";
     this.chkLog.UseVisualStyleBackColor = true;
     this.chkLog.CheckedChanged         += new System.EventHandler(this.chkLog_CheckedChanged);
     //
     // chkShowStd
     //
     resources.ApplyResources(this.chkShowStd, "chkShowStd");
     this.chkShowStd.Name = "chkShowStd";
     this.chkShowStd.UseVisualStyleBackColor = true;
     this.chkShowStd.CheckedChanged         += new System.EventHandler(this.chkShowStd_CheckedChanged);
     //
     // chkShowMean
     //
     resources.ApplyResources(this.chkShowMean, "chkShowMean");
     this.chkShowMean.Name = "chkShowMean";
     this.chkShowMean.UseVisualStyleBackColor = true;
     this.chkShowMean.CheckedChanged         += new System.EventHandler(this.chkShowMean_CheckedChanged);
     //
     // dgvCategories
     //
     this.dgvCategories.AllowUserToAddRows          = false;
     this.dgvCategories.AutoSizeColumnsMode         = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvCategories.BackgroundColor             = System.Drawing.SystemColors.Window;
     this.dgvCategories.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvCategories.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.colSymbol,
         this.colValues,
         this.colLegendText,
         this.colCount
     });
     resources.ApplyResources(this.dgvCategories, "dgvCategories");
     this.dgvCategories.MultiSelect       = false;
     this.dgvCategories.Name              = "dgvCategories";
     this.dgvCategories.RowHeadersVisible = false;
     this.dgvCategories.SelectionMode     = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     //
     // colSymbol
     //
     this.colSymbol.FillWeight = 49.97129F;
     resources.ApplyResources(this.colSymbol, "colSymbol");
     this.colSymbol.Name      = "colSymbol";
     this.colSymbol.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     //
     // colValues
     //
     this.colValues.FillWeight = 142.132F;
     resources.ApplyResources(this.colValues, "colValues");
     this.colValues.Name     = "colValues";
     this.colValues.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // colLegendText
     //
     this.colLegendText.FillWeight = 157.008F;
     resources.ApplyResources(this.colLegendText, "colLegendText");
     this.colLegendText.Name = "colLegendText";
     //
     // colCount
     //
     this.colCount.FillWeight = 50.88878F;
     resources.ApplyResources(this.colCount, "colCount");
     this.colCount.Name     = "colCount";
     this.colCount.ReadOnly = true;
     this.colCount.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // chkHillshade
     //
     resources.ApplyResources(this.chkHillshade, "chkHillshade");
     this.chkHillshade.Name = "chkHillshade";
     this.chkHillshade.UseVisualStyleBackColor = true;
     this.chkHillshade.CheckedChanged         += new System.EventHandler(this.chkHillshade_CheckedChanged);
     //
     // btnShadedRelief
     //
     resources.ApplyResources(this.btnShadedRelief, "btnShadedRelief");
     this.btnShadedRelief.Name = "btnShadedRelief";
     this.btnShadedRelief.UseVisualStyleBackColor = true;
     this.btnShadedRelief.Click += new System.EventHandler(this.btnShadedRelief_Click);
     //
     // grpHillshade
     //
     this.grpHillshade.Controls.Add(this.angLightDirection);
     this.grpHillshade.Controls.Add(this.btnShadedRelief);
     this.grpHillshade.Controls.Add(this.btnElevation);
     this.grpHillshade.Controls.Add(this.dbxElevationFactor);
     this.grpHillshade.Controls.Add(this.chkHillshade);
     resources.ApplyResources(this.grpHillshade, "grpHillshade");
     this.grpHillshade.Name    = "grpHillshade";
     this.grpHillshade.TabStop = false;
     //
     // btnElevation
     //
     //this.btnElevation.Image = ResourceService.GetImageResource("Down_16px") as Image;
     resources.ApplyResources(this.btnElevation, "btnElevation");
     this.btnElevation.Name = "btnElevation";
     this.btnElevation.UseVisualStyleBackColor = true;
     this.btnElevation.Click += new System.EventHandler(this.btnElevation_Click);
     //
     // dataGridViewImageColumn1
     //
     this.dataGridViewImageColumn1.FillWeight = 76.14214F;
     resources.ApplyResources(this.dataGridViewImageColumn1, "dataGridViewImageColumn1");
     this.dataGridViewImageColumn1.Name      = "dataGridViewImageColumn1";
     this.dataGridViewImageColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewImageColumn1.SortMode  = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // btnAdd
     //
     //this.btnAdd.Image = ResourceService.GetImageResource("Add_16px") as Image;
     resources.ApplyResources(this.btnAdd, "btnAdd");
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnDelete
     //
     //this.btnDelete.Image = ResourceService.GetImageResource("Delete_16px") as Image;
     resources.ApplyResources(this.btnDelete, "btnDelete");
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.UseVisualStyleBackColor = true;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.opacityNoData);
     this.groupBox1.Controls.Add(this.colorNoData);
     resources.ApplyResources(this.groupBox1, "groupBox1");
     this.groupBox1.Name    = "groupBox1";
     this.groupBox1.TabStop = false;
     //
     // opacityNoData
     //
     this.opacityNoData.ColorButton = this.colorNoData;
     this.opacityNoData.FlipRamp    = false;
     this.opacityNoData.FlipText    = false;
     this.opacityNoData.InvertRamp  = false;
     resources.ApplyResources(this.opacityNoData, "opacityNoData");
     this.opacityNoData.Maximum            = 1D;
     this.opacityNoData.MaximumColor       = System.Drawing.Color.Green;
     this.opacityNoData.Minimum            = 0D;
     this.opacityNoData.MinimumColor       = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.opacityNoData.Name               = "opacityNoData";
     this.opacityNoData.NumberFormat       = "#.00";
     this.opacityNoData.Orientation        = System.Windows.Forms.Orientation.Horizontal;
     this.opacityNoData.RampRadius         = 10F;
     this.opacityNoData.RampText           = "Opacity";
     this.opacityNoData.RampTextAlignment  = System.Drawing.ContentAlignment.MiddleCenter;
     this.opacityNoData.RampTextBehindRamp = true;
     this.opacityNoData.RampTextColor      = System.Drawing.Color.Black;
     this.opacityNoData.RampTextFont       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.opacityNoData.ShowMaximum        = false;
     this.opacityNoData.ShowMinimum        = false;
     this.opacityNoData.ShowTicks          = false;
     this.opacityNoData.ShowValue          = false;
     this.opacityNoData.SliderColor        = System.Drawing.Color.Blue;
     this.opacityNoData.SliderRadius       = 4F;
     this.opacityNoData.TickColor          = System.Drawing.Color.DarkGray;
     this.opacityNoData.TickSpacing        = 5F;
     this.opacityNoData.Value              = 0D;
     //
     // colorNoData
     //
     this.colorNoData.BevelRadius         = 0;
     this.colorNoData.Color               = System.Drawing.Color.Transparent;
     this.colorNoData.LaunchDialogOnClick = true;
     resources.ApplyResources(this.colorNoData, "colorNoData");
     this.colorNoData.Name           = "colorNoData";
     this.colorNoData.RoundingRadius = 3;
     this.colorNoData.ColorChanged  += new System.EventHandler(this.colorNoData_ColorChanged);
     //
     // sldSchemeOpacity
     //
     this.sldSchemeOpacity.ColorButton = null;
     this.sldSchemeOpacity.FlipRamp    = false;
     this.sldSchemeOpacity.FlipText    = false;
     resources.ApplyResources(this.sldSchemeOpacity, "sldSchemeOpacity");
     this.sldSchemeOpacity.InvertRamp         = false;
     this.sldSchemeOpacity.Maximum            = 1D;
     this.sldSchemeOpacity.MaximumColor       = System.Drawing.Color.Green;
     this.sldSchemeOpacity.Minimum            = 0D;
     this.sldSchemeOpacity.MinimumColor       = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(128)))), ((int)(((byte)(0)))));
     this.sldSchemeOpacity.Name               = "sldSchemeOpacity";
     this.sldSchemeOpacity.NumberFormat       = "#.00";
     this.sldSchemeOpacity.Orientation        = System.Windows.Forms.Orientation.Horizontal;
     this.sldSchemeOpacity.RampRadius         = 9F;
     this.sldSchemeOpacity.RampText           = "Opacity";
     this.sldSchemeOpacity.RampTextAlignment  = System.Drawing.ContentAlignment.MiddleCenter;
     this.sldSchemeOpacity.RampTextBehindRamp = true;
     this.sldSchemeOpacity.RampTextColor      = System.Drawing.Color.Black;
     this.sldSchemeOpacity.RampTextFont       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.sldSchemeOpacity.ShowMaximum        = false;
     this.sldSchemeOpacity.ShowMinimum        = false;
     this.sldSchemeOpacity.ShowTicks          = false;
     this.sldSchemeOpacity.ShowValue          = false;
     this.sldSchemeOpacity.SliderColor        = System.Drawing.Color.Blue;
     this.sldSchemeOpacity.SliderRadius       = 4F;
     this.sldSchemeOpacity.TickColor          = System.Drawing.Color.DarkGray;
     this.sldSchemeOpacity.TickSpacing        = 5F;
     this.sldSchemeOpacity.Value              = 1D;
     this.sldSchemeOpacity.ValueChanged      += new System.EventHandler(this.sldSchemeOpacity_ValueChanged);
     //
     // angLightDirection
     //
     this.angLightDirection.Angle     = 45;
     this.angLightDirection.BackColor = System.Drawing.SystemColors.Control;
     resources.ApplyResources(this.angLightDirection, "angLightDirection");
     this.angLightDirection.Clockwise  = true;
     this.angLightDirection.KnobColor  = System.Drawing.Color.Green;
     this.angLightDirection.Name       = "angLightDirection";
     this.angLightDirection.StartAngle = 90;
     this.ttHelp.SetToolTip(this.angLightDirection, resources.GetString("angLightDirection.ToolTip"));
     //
     // dbxElevationFactor
     //
     this.dbxElevationFactor.BackColorInvalid = System.Drawing.Color.Salmon;
     this.dbxElevationFactor.BackColorRegular = System.Drawing.Color.Empty;
     resources.ApplyResources(this.dbxElevationFactor, "dbxElevationFactor");
     this.dbxElevationFactor.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" +
                                           "ating point value.";
     this.dbxElevationFactor.IsValid      = true;
     this.dbxElevationFactor.Name         = "dbxElevationFactor";
     this.dbxElevationFactor.NumberFormat = "E7";
     this.dbxElevationFactor.RegularHelp  = "The Elevation Factor is a constant multiplier that converts the elevation unit (e" +
                                            "g. feet) into the projection units (eg. decimal degrees).";
     this.ttHelp.SetToolTip(this.dbxElevationFactor, resources.GetString("dbxElevationFactor.ToolTip"));
     this.dbxElevationFactor.Value        = 0D;
     this.dbxElevationFactor.TextChanged += new System.EventHandler(this.dbxElevationFactor_TextChanged);
     //
     // mwProgressBar1
     //
     this.mwProgressBar1.FontColor = System.Drawing.Color.Black;
     resources.ApplyResources(this.mwProgressBar1, "mwProgressBar1");
     this.mwProgressBar1.Name        = "mwProgressBar1";
     this.mwProgressBar1.ShowMessage = true;
     //
     // tccColorRange
     //
     this.tccColorRange.EndColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tccColorRange.HueShift = 0;
     resources.ApplyResources(this.tccColorRange, "tccColorRange");
     this.tccColorRange.Name            = "tccColorRange";
     this.tccColorRange.StartColor      = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.tccColorRange.UseRangeChecked = true;
     this.tccColorRange.ColorChanged   += new System.EventHandler <ColorRangeEventArgs>(this.tccColorRange_ColorChanged);
     //
     // dbxMax
     //
     this.dbxMax.BackColorInvalid = System.Drawing.Color.Salmon;
     this.dbxMax.BackColorRegular = System.Drawing.Color.Empty;
     resources.ApplyResources(this.dbxMax, "dbxMax");
     this.dbxMax.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" +
                               "ating point value.";
     this.dbxMax.IsValid      = true;
     this.dbxMax.Name         = "dbxMax";
     this.dbxMax.NumberFormat = null;
     this.dbxMax.RegularHelp  = "Enter a double precision floating point value.";
     this.dbxMax.Value        = 1000000D;
     this.dbxMax.TextChanged += new System.EventHandler(this.dbxMax_TextChanged);
     //
     // dbxMin
     //
     this.dbxMin.BackColorInvalid = System.Drawing.Color.Salmon;
     this.dbxMin.BackColorRegular = System.Drawing.Color.Empty;
     resources.ApplyResources(this.dbxMin, "dbxMin");
     this.dbxMin.InvalidHelp = "The value entered could not be correctly parsed into a valid double precision flo" +
                               "ating point value.";
     this.dbxMin.IsValid      = true;
     this.dbxMin.Name         = "dbxMin";
     this.dbxMin.NumberFormat = null;
     this.dbxMin.RegularHelp  = "Enter a double precision floating point value.";
     this.dbxMin.Value        = -100000D;
     this.dbxMin.TextChanged += new System.EventHandler(this.dbxMin_TextChanged);
     //
     // breakSliderGraph1
     //
     this.breakSliderGraph1.AttributeSource    = null;
     this.breakSliderGraph1.BackColor          = System.Drawing.Color.White;
     this.breakSliderGraph1.BorderStyle        = System.Windows.Forms.BorderStyle.Fixed3D;
     this.breakSliderGraph1.BreakColor         = System.Drawing.Color.Blue;
     this.breakSliderGraph1.BreakSelectedColor = System.Drawing.Color.Red;
     this.breakSliderGraph1.FontColor          = System.Drawing.Color.Black;
     this.breakSliderGraph1.IntervalMethod     = DotSpatial.Symbology.IntervalMethod.EqualInterval;
     resources.ApplyResources(this.breakSliderGraph1, "breakSliderGraph1");
     this.breakSliderGraph1.LogY = false;
     this.breakSliderGraph1.MaximumSampleSize = 10000;
     this.breakSliderGraph1.MinHeight         = 20;
     this.breakSliderGraph1.Name                  = "breakSliderGraph1";
     this.breakSliderGraph1.NumColumns            = 40;
     this.breakSliderGraph1.RasterLayer           = null;
     this.breakSliderGraph1.Scheme                = null;
     this.breakSliderGraph1.ShowMean              = false;
     this.breakSliderGraph1.ShowStandardDeviation = false;
     this.breakSliderGraph1.Title                 = "Statistical Breaks:";
     this.breakSliderGraph1.TitleColor            = System.Drawing.Color.Black;
     this.breakSliderGraph1.TitleFont             = new System.Drawing.Font("Arial", 20F, System.Drawing.FontStyle.Bold);
     this.breakSliderGraph1.SliderMoved          += new System.EventHandler <BreakSliderEventArgs>(this.breakSliderGraph1_SliderMoved);
     //
     // RasterCategoryControl
     //
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.sldSchemeOpacity);
     this.Controls.Add(this.grpHillshade);
     this.Controls.Add(this.mwProgressBar1);
     this.Controls.Add(this.btnQuick);
     this.Controls.Add(this.tccColorRange);
     this.Controls.Add(this.tabScheme);
     this.Controls.Add(this.dgvCategories);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.btnRamp);
     this.Controls.Add(this.cmdRefresh);
     this.Name = "RasterCategoryControl";
     resources.ApplyResources(this, "$this");
     this.tabScheme.ResumeLayout(false);
     this.tabStatistics.ResumeLayout(false);
     this.tabStatistics.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudSigFig)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatistics)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.nudCategoryCount)).EndInit();
     this.tabGraph.ResumeLayout(false);
     this.tabGraph.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudColumns)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgvCategories)).EndInit();
     this.grpHillshade.ResumeLayout(false);
     this.grpHillshade.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm));
     this._labelProductName     = new System.Windows.Forms.TextBox();
     this._labelVersion         = new System.Windows.Forms.TextBox();
     this._labelInternalUse     = new System.Windows.Forms.Label();
     this._systemButton         = new System.Windows.Forms.Button();
     this._OKButton             = new System.Windows.Forms.Button();
     this._linkLabelUpdate      = new System.Windows.Forms.LinkLabel();
     this._labelMessageUpToDate = new System.Windows.Forms.Label();
     this._linkLabelDownload    = new System.Windows.Forms.LinkLabel();
     this.linkLabelInformation  = new System.Windows.Forms.LinkLabel();
     this._labelInformation     = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // _labelProductName
     //
     this._labelProductName.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this._labelProductName.BorderStyle = System.Windows.Forms.BorderStyle.None;
     resources.ApplyResources(this._labelProductName, "_labelProductName");
     this._labelProductName.ForeColor = System.Drawing.Color.White;
     this._labelProductName.Name      = "_labelProductName";
     this._labelProductName.ReadOnly  = true;
     //
     // _labelVersion
     //
     this._labelVersion.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(64)))));
     this._labelVersion.BorderStyle = System.Windows.Forms.BorderStyle.None;
     resources.ApplyResources(this._labelVersion, "_labelVersion");
     this._labelVersion.ForeColor = System.Drawing.Color.White;
     this._labelVersion.Name      = "_labelVersion";
     this._labelVersion.ReadOnly  = true;
     //
     // _labelInternalUse
     //
     this._labelInternalUse.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this._labelInternalUse, "_labelInternalUse");
     this._labelInternalUse.ForeColor = System.Drawing.Color.White;
     this._labelInternalUse.Name      = "_labelInternalUse";
     //
     // _systemButton
     //
     resources.ApplyResources(this._systemButton, "_systemButton");
     this._systemButton.Name   = "_systemButton";
     this._systemButton.Click += new System.EventHandler(this.SystemButtonClick);
     //
     // _OKButton
     //
     this._OKButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     resources.ApplyResources(this._OKButton, "_OKButton");
     this._OKButton.Name   = "_OKButton";
     this._OKButton.Click += new System.EventHandler(this.OkButtonClick);
     //
     // _linkLabelUpdate
     //
     resources.ApplyResources(this._linkLabelUpdate, "_linkLabelUpdate");
     this._linkLabelUpdate.BackColor    = System.Drawing.Color.Transparent;
     this._linkLabelUpdate.ForeColor    = System.Drawing.SystemColors.ButtonHighlight;
     this._linkLabelUpdate.LinkColor    = System.Drawing.Color.White;
     this._linkLabelUpdate.Name         = "_linkLabelUpdate";
     this._linkLabelUpdate.TabStop      = true;
     this._linkLabelUpdate.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this._linkLabelUpdate_LinkClicked);
     //
     // _labelMessageUpToDate
     //
     this._labelMessageUpToDate.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this._labelMessageUpToDate, "_labelMessageUpToDate");
     this._labelMessageUpToDate.ForeColor = System.Drawing.Color.White;
     this._labelMessageUpToDate.Name      = "_labelMessageUpToDate";
     //
     // _linkLabelDownload
     //
     resources.ApplyResources(this._linkLabelDownload, "_linkLabelDownload");
     this._linkLabelDownload.BackColor    = System.Drawing.Color.Transparent;
     this._linkLabelDownload.ForeColor    = System.Drawing.SystemColors.ButtonHighlight;
     this._linkLabelDownload.LinkColor    = System.Drawing.Color.White;
     this._linkLabelDownload.Name         = "_linkLabelDownload";
     this._linkLabelDownload.TabStop      = true;
     this._linkLabelDownload.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this._linkLabelDowload_LinkClicked);
     //
     // linkLabelInformation
     //
     resources.ApplyResources(this.linkLabelInformation, "linkLabelInformation");
     this.linkLabelInformation.BackColor    = System.Drawing.Color.Transparent;
     this.linkLabelInformation.ForeColor    = System.Drawing.SystemColors.ButtonHighlight;
     this.linkLabelInformation.LinkColor    = System.Drawing.Color.White;
     this.linkLabelInformation.Name         = "linkLabelInformation";
     this.linkLabelInformation.TabStop      = true;
     this.linkLabelInformation.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabelInformation_LinkClicked);
     //
     // _labelInformation
     //
     this._labelInformation.BackColor   = System.Drawing.SystemColors.InfoText;
     this._labelInformation.BorderStyle = System.Windows.Forms.BorderStyle.None;
     resources.ApplyResources(this._labelInformation, "_labelInformation");
     this._labelInformation.ForeColor = System.Drawing.Color.White;
     this._labelInformation.Name      = "_labelInformation";
     this._labelInformation.ReadOnly  = true;
     //
     // AboutForm
     //
     resources.ApplyResources(this, "$this");
     this.CancelButton = this._OKButton;
     this.Controls.Add(this._labelInformation);
     this.Controls.Add(this.linkLabelInformation);
     this.Controls.Add(this._linkLabelDownload);
     this.Controls.Add(this._labelMessageUpToDate);
     this.Controls.Add(this._linkLabelUpdate);
     this.Controls.Add(this._OKButton);
     this.Controls.Add(this._systemButton);
     this.Controls.Add(this._labelInternalUse);
     this.Controls.Add(this._labelProductName);
     this.Controls.Add(this._labelVersion);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "AboutForm";
     this.ShowInTaskbar   = false;
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #57
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ColourEditorForm));
     this.colourEditorControl = new ColourEditorUserControl();
     this.buttonCancel        = new KryptonButton();
     this.buttonOK            = new KryptonButton();
     this.buttonNoColour      = new KryptonButton();
     this.SuspendLayout();
     //
     // colorEditorControl
     //
     this.colourEditorControl.AccessibleDescription = null;
     this.colourEditorControl.AccessibleName        = null;
     resources.ApplyResources(this.colourEditorControl, "colourEditorControl");
     this.colourEditorControl.BackgroundImage = null;
     this.colourEditorControl.ExternalColourEditorInformationProvider = null;
     this.colourEditorControl.Font           = null;
     this.colourEditorControl.MinimumSize    = new System.Drawing.Size(372, 398);
     this.colourEditorControl.Name           = "colourEditorControl";
     this.colourEditorControl.SelectedColour = System.Drawing.Color.Empty;
     this.colourEditorControl.NeedUpdateUI  += new System.EventHandler(this.ColourEditorUserControl1_NeedUpdateUI);
     //
     // buttonCancel
     //
     this.buttonCancel.AccessibleDescription = null;
     this.buttonCancel.AccessibleName        = null;
     resources.ApplyResources(this.buttonCancel, "buttonCancel");
     this.buttonCancel.BackgroundImage = null;
     this.buttonCancel.DialogResult    = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Font            = null;
     this.buttonCancel.Name            = "buttonCancel";
     //this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // buttonOK
     //
     this.buttonOK.AccessibleDescription = null;
     this.buttonOK.AccessibleName        = null;
     resources.ApplyResources(this.buttonOK, "buttonOK");
     this.buttonOK.BackgroundImage = null;
     this.buttonOK.DialogResult    = System.Windows.Forms.DialogResult.OK;
     this.buttonOK.Font            = null;
     this.buttonOK.Name            = "buttonOK";
     //this.buttonOK.UseVisualStyleBackColor = true;
     this.buttonOK.Click += new System.EventHandler(this.ButtonOK_Click);
     //
     // buttonNoColor
     //
     this.buttonNoColour.AccessibleDescription = null;
     this.buttonNoColour.AccessibleName        = null;
     resources.ApplyResources(this.buttonNoColour, "buttonNoColour");
     this.buttonNoColour.BackgroundImage = null;
     this.buttonNoColour.DialogResult    = System.Windows.Forms.DialogResult.OK;
     this.buttonNoColour.Font            = null;
     this.buttonNoColour.Name            = "buttonNoColour";
     //this.buttonNoColour.UseVisualStyleBackColor = true;
     this.buttonNoColour.Click += new System.EventHandler(this.ButtonNoColor_Click);
     //
     // ColorEditorForm
     //
     this.AcceptButton          = this.buttonOK;
     this.AccessibleDescription = null;
     this.AccessibleName        = null;
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode   = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = null;
     this.CancelButton    = this.buttonCancel;
     this.Controls.Add(this.buttonNoColour);
     this.Controls.Add(this.buttonOK);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.colourEditorControl);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "ColorEditorForm";
     this.ShowInTaskbar = false;
     this.Load         += new System.EventHandler(this.ColourEditorForm_Load);
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.ColourEditorForm_FormClosing);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PropertiesSidebar));
     this.checkBoxOrphans           = new System.Windows.Forms.CheckBox();
     this.checkBoxInvalidTest       = new System.Windows.Forms.CheckBox();
     this.checkBoxCertTest          = new System.Windows.Forms.CheckBox();
     this.groupBox2                 = new System.Windows.Forms.GroupBox();
     this.flowLayoutPanel2          = new System.Windows.Forms.FlowLayoutPanel();
     this.checkBoxListHideMicrosoft = new System.Windows.Forms.CheckBox();
     this.checkBoxListSysComp       = new System.Windows.Forms.CheckBox();
     this.checkBoxListProtected     = new System.Windows.Forms.CheckBox();
     this.checkBoxShowUpdates       = new System.Windows.Forms.CheckBox();
     this.checkBoxWinFeature        = new System.Windows.Forms.CheckBox();
     this.checkBoxShowStoreApps     = new System.Windows.Forms.CheckBox();
     this.groupBox1                 = new System.Windows.Forms.GroupBox();
     this.flowLayoutPanel1          = new System.Windows.Forms.FlowLayoutPanel();
     this.checkBoxViewCheckboxes    = new System.Windows.Forms.CheckBox();
     this.checkBoxViewGroups        = new System.Windows.Forms.CheckBox();
     this.toolTip1      = new System.Windows.Forms.ToolTip(this.components);
     this.usageTracker1 = new Klocman.Subsystems.Tracking.UsageTracker();
     this.groupBox2.SuspendLayout();
     this.flowLayoutPanel2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // checkBoxOrphans
     //
     resources.ApplyResources(this.checkBoxOrphans, "checkBoxOrphans");
     this.checkBoxOrphans.Name = "checkBoxOrphans";
     this.toolTip1.SetToolTip(this.checkBoxOrphans, resources.GetString("checkBoxOrphans.ToolTip"));
     this.checkBoxOrphans.UseVisualStyleBackColor = true;
     //
     // checkBoxInvalidTest
     //
     resources.ApplyResources(this.checkBoxInvalidTest, "checkBoxInvalidTest");
     this.checkBoxInvalidTest.Name = "checkBoxInvalidTest";
     this.toolTip1.SetToolTip(this.checkBoxInvalidTest, resources.GetString("checkBoxInvalidTest.ToolTip"));
     this.checkBoxInvalidTest.UseVisualStyleBackColor = true;
     //
     // checkBoxCertTest
     //
     resources.ApplyResources(this.checkBoxCertTest, "checkBoxCertTest");
     this.checkBoxCertTest.Name = "checkBoxCertTest";
     this.toolTip1.SetToolTip(this.checkBoxCertTest, resources.GetString("checkBoxCertTest.ToolTip"));
     this.checkBoxCertTest.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     resources.ApplyResources(this.groupBox2, "groupBox2");
     this.groupBox2.Controls.Add(this.flowLayoutPanel2);
     this.groupBox2.Name    = "groupBox2";
     this.groupBox2.TabStop = false;
     this.toolTip1.SetToolTip(this.groupBox2, resources.GetString("groupBox2.ToolTip"));
     //
     // flowLayoutPanel2
     //
     resources.ApplyResources(this.flowLayoutPanel2, "flowLayoutPanel2");
     this.flowLayoutPanel2.Controls.Add(this.checkBoxListHideMicrosoft);
     this.flowLayoutPanel2.Controls.Add(this.checkBoxOrphans);
     this.flowLayoutPanel2.Controls.Add(this.checkBoxListSysComp);
     this.flowLayoutPanel2.Controls.Add(this.checkBoxListProtected);
     this.flowLayoutPanel2.Controls.Add(this.checkBoxShowUpdates);
     this.flowLayoutPanel2.Controls.Add(this.checkBoxWinFeature);
     this.flowLayoutPanel2.Controls.Add(this.checkBoxShowStoreApps);
     this.flowLayoutPanel2.Name = "flowLayoutPanel2";
     this.toolTip1.SetToolTip(this.flowLayoutPanel2, resources.GetString("flowLayoutPanel2.ToolTip"));
     //
     // checkBoxListHideMicrosoft
     //
     resources.ApplyResources(this.checkBoxListHideMicrosoft, "checkBoxListHideMicrosoft");
     this.checkBoxListHideMicrosoft.Name = "checkBoxListHideMicrosoft";
     this.toolTip1.SetToolTip(this.checkBoxListHideMicrosoft, resources.GetString("checkBoxListHideMicrosoft.ToolTip"));
     this.checkBoxListHideMicrosoft.UseVisualStyleBackColor = true;
     //
     // checkBoxListSysComp
     //
     resources.ApplyResources(this.checkBoxListSysComp, "checkBoxListSysComp");
     this.checkBoxListSysComp.Name = "checkBoxListSysComp";
     this.toolTip1.SetToolTip(this.checkBoxListSysComp, resources.GetString("checkBoxListSysComp.ToolTip"));
     this.checkBoxListSysComp.UseVisualStyleBackColor = true;
     //
     // checkBoxListProtected
     //
     resources.ApplyResources(this.checkBoxListProtected, "checkBoxListProtected");
     this.checkBoxListProtected.Name = "checkBoxListProtected";
     this.toolTip1.SetToolTip(this.checkBoxListProtected, resources.GetString("checkBoxListProtected.ToolTip"));
     this.checkBoxListProtected.UseVisualStyleBackColor = true;
     //
     // checkBoxShowUpdates
     //
     resources.ApplyResources(this.checkBoxShowUpdates, "checkBoxShowUpdates");
     this.checkBoxShowUpdates.Name = "checkBoxShowUpdates";
     this.toolTip1.SetToolTip(this.checkBoxShowUpdates, resources.GetString("checkBoxShowUpdates.ToolTip"));
     this.checkBoxShowUpdates.UseVisualStyleBackColor = true;
     //
     // checkBoxWinFeature
     //
     resources.ApplyResources(this.checkBoxWinFeature, "checkBoxWinFeature");
     this.checkBoxWinFeature.Name = "checkBoxWinFeature";
     this.toolTip1.SetToolTip(this.checkBoxWinFeature, resources.GetString("checkBoxWinFeature.ToolTip"));
     this.checkBoxWinFeature.UseVisualStyleBackColor = true;
     //
     // checkBoxShowStoreApps
     //
     resources.ApplyResources(this.checkBoxShowStoreApps, "checkBoxShowStoreApps");
     this.checkBoxShowStoreApps.Name = "checkBoxShowStoreApps";
     this.toolTip1.SetToolTip(this.checkBoxShowStoreApps, resources.GetString("checkBoxShowStoreApps.ToolTip"));
     this.checkBoxShowStoreApps.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     resources.ApplyResources(this.groupBox1, "groupBox1");
     this.groupBox1.Controls.Add(this.flowLayoutPanel1);
     this.groupBox1.Name    = "groupBox1";
     this.groupBox1.TabStop = false;
     this.toolTip1.SetToolTip(this.groupBox1, resources.GetString("groupBox1.ToolTip"));
     //
     // flowLayoutPanel1
     //
     resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
     this.flowLayoutPanel1.Controls.Add(this.checkBoxViewCheckboxes);
     this.flowLayoutPanel1.Controls.Add(this.checkBoxViewGroups);
     this.flowLayoutPanel1.Controls.Add(this.checkBoxInvalidTest);
     this.flowLayoutPanel1.Controls.Add(this.checkBoxCertTest);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.toolTip1.SetToolTip(this.flowLayoutPanel1, resources.GetString("flowLayoutPanel1.ToolTip"));
     //
     // checkBoxViewCheckboxes
     //
     resources.ApplyResources(this.checkBoxViewCheckboxes, "checkBoxViewCheckboxes");
     this.checkBoxViewCheckboxes.Name = "checkBoxViewCheckboxes";
     this.toolTip1.SetToolTip(this.checkBoxViewCheckboxes, resources.GetString("checkBoxViewCheckboxes.ToolTip"));
     this.checkBoxViewCheckboxes.UseVisualStyleBackColor = true;
     //
     // checkBoxViewGroups
     //
     resources.ApplyResources(this.checkBoxViewGroups, "checkBoxViewGroups");
     this.checkBoxViewGroups.Name = "checkBoxViewGroups";
     this.toolTip1.SetToolTip(this.checkBoxViewGroups, resources.GetString("checkBoxViewGroups.ToolTip"));
     this.checkBoxViewGroups.UseVisualStyleBackColor = true;
     //
     // usageTracker1
     //
     this.usageTracker1.ContainerControl = this;
     //
     // PropertiesSidebar
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupBox2);
     this.MinimumSize = new System.Drawing.Size(170, 170);
     this.Name        = "PropertiesSidebar";
     this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.flowLayoutPanel2.ResumeLayout(false);
     this.flowLayoutPanel2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Beispiel #59
0
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Sims));
     this.ilist            = new System.Windows.Forms.ImageList(this.components);
     this.lv               = new System.Windows.Forms.ListView();
     this.columnHeader1    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3    = new System.Windows.Forms.ColumnHeader();
     this.chKind           = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader6    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader7    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader8    = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10   = new System.Windows.Forms.ColumnHeader();
     this.iListSmall       = new System.Windows.Forms.ImageList(this.components);
     this.button1          = new System.Windows.Forms.Button();
     this.toolTip1         = new System.Windows.Forms.ToolTip(this.components);
     this.panel1           = new System.Windows.Forms.Panel();
     this.label1           = new System.Windows.Forms.Label();
     this.label2           = new System.Windows.Forms.Label();
     this.panel2           = new System.Windows.Forms.Panel();
     this.lbUbi            = new System.Windows.Forms.Label();
     this.label3           = new System.Windows.Forms.Label();
     this.panel3           = new System.Windows.Forms.Panel();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.cbNpc            = new System.Windows.Forms.CheckBox();
     this.cbTownie         = new System.Windows.Forms.CheckBox();
     this.ckbPlayable      = new System.Windows.Forms.CheckBox();
     this.cbdetail         = new System.Windows.Forms.CheckBox();
     this.ckbUnEditable    = new System.Windows.Forms.CheckBox();
     this.flowLayoutPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // ilist
     //
     this.ilist.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
     resources.ApplyResources(this.ilist, "ilist");
     this.ilist.TransparentColor = System.Drawing.Color.Transparent;
     //
     // lv
     //
     resources.ApplyResources(this.lv, "lv");
     this.lv.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.chKind,
         this.columnHeader4,
         this.columnHeader5,
         this.columnHeader6,
         this.columnHeader9,
         this.columnHeader7,
         this.columnHeader8,
         this.columnHeader10
     });
     this.lv.FullRowSelect  = true;
     this.lv.HideSelection  = false;
     this.lv.LargeImageList = this.ilist;
     this.lv.MultiSelect    = false;
     this.lv.Name           = "lv";
     this.lv.SmallImageList = this.iListSmall;
     this.lv.StateImageList = this.iListSmall;
     this.toolTip1.SetToolTip(this.lv, resources.GetString("lv.ToolTip"));
     this.lv.UseCompatibleStateImageBehavior = false;
     this.lv.View         = System.Windows.Forms.View.Details;
     this.lv.DoubleClick += new System.EventHandler(this.Open);
     this.lv.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.SortList);
     //
     // columnHeader1
     //
     resources.ApplyResources(this.columnHeader1, "columnHeader1");
     //
     // columnHeader2
     //
     resources.ApplyResources(this.columnHeader2, "columnHeader2");
     //
     // columnHeader3
     //
     resources.ApplyResources(this.columnHeader3, "columnHeader3");
     //
     // chKind
     //
     resources.ApplyResources(this.chKind, "chKind");
     //
     // columnHeader4
     //
     resources.ApplyResources(this.columnHeader4, "columnHeader4");
     //
     // columnHeader5
     //
     resources.ApplyResources(this.columnHeader5, "columnHeader5");
     //
     // columnHeader6
     //
     resources.ApplyResources(this.columnHeader6, "columnHeader6");
     //
     // columnHeader9
     //
     resources.ApplyResources(this.columnHeader9, "columnHeader9");
     //
     // columnHeader7
     //
     resources.ApplyResources(this.columnHeader7, "columnHeader7");
     //
     // columnHeader8
     //
     resources.ApplyResources(this.columnHeader8, "columnHeader8");
     //
     // columnHeader10
     //
     resources.ApplyResources(this.columnHeader10, "columnHeader10");
     //
     // iListSmall
     //
     this.iListSmall.ColorDepth = System.Windows.Forms.ColorDepth.Depth32Bit;
     resources.ApplyResources(this.iListSmall, "iListSmall");
     this.iListSmall.TransparentColor = System.Drawing.Color.Transparent;
     //
     // button1
     //
     resources.ApplyResources(this.button1, "button1");
     this.button1.Name   = "button1";
     this.button1.Click += new System.EventHandler(this.Open);
     //
     // panel1
     //
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.BackColor = System.Drawing.Color.SteelBlue;
     this.panel1.Name      = "panel1";
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.Name = "label2";
     //
     // panel2
     //
     resources.ApplyResources(this.panel2, "panel2");
     this.panel2.BackColor = System.Drawing.Color.LightCoral;
     this.panel2.Name      = "panel2";
     //
     // lbUbi
     //
     this.lbUbi.BackColor = System.Drawing.SystemColors.Window;
     resources.ApplyResources(this.lbUbi, "lbUbi");
     this.lbUbi.ForeColor = System.Drawing.Color.Brown;
     this.lbUbi.Name      = "lbUbi";
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.Name = "label3";
     //
     // panel3
     //
     resources.ApplyResources(this.panel3, "panel3");
     this.panel3.BackColor = System.Drawing.Color.YellowGreen;
     this.panel3.Name      = "panel3";
     //
     // flowLayoutPanel1
     //
     resources.ApplyResources(this.flowLayoutPanel1, "flowLayoutPanel1");
     this.flowLayoutPanel1.Controls.Add(this.ckbPlayable);
     this.flowLayoutPanel1.Controls.Add(this.cbTownie);
     this.flowLayoutPanel1.Controls.Add(this.cbNpc);
     this.flowLayoutPanel1.Controls.Add(this.ckbUnEditable);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     //
     // cbNpc
     //
     resources.ApplyResources(this.cbNpc, "cbNpc");
     this.cbNpc.Name            = "cbNpc";
     this.cbNpc.CheckedChanged += new System.EventHandler(this.ckbFilter_CheckedChanged);
     //
     // cbTownie
     //
     resources.ApplyResources(this.cbTownie, "cbTownie");
     this.cbTownie.Name            = "cbTownie";
     this.cbTownie.CheckedChanged += new System.EventHandler(this.ckbFilter_CheckedChanged);
     //
     // ckbPlayable
     //
     resources.ApplyResources(this.ckbPlayable, "ckbPlayable");
     this.ckbPlayable.Checked    = true;
     this.ckbPlayable.CheckState = System.Windows.Forms.CheckState.Checked;
     this.ckbPlayable.Name       = "ckbPlayable";
     this.ckbPlayable.UseVisualStyleBackColor = true;
     this.ckbPlayable.CheckedChanged         += new System.EventHandler(this.ckbFilter_CheckedChanged);
     //
     // cbdetail
     //
     resources.ApplyResources(this.cbdetail, "cbdetail");
     this.cbdetail.Checked         = true;
     this.cbdetail.CheckState      = System.Windows.Forms.CheckState.Checked;
     this.cbdetail.Name            = "cbdetail";
     this.cbdetail.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // ckbUnEditable
     //
     resources.ApplyResources(this.ckbUnEditable, "ckbUnEditable");
     this.ckbUnEditable.Name = "ckbUnEditable";
     this.ckbUnEditable.UseVisualStyleBackColor = true;
     this.ckbUnEditable.CheckedChanged         += new System.EventHandler(this.ckbFilter_CheckedChanged);
     //
     // Sims
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.cbdetail);
     this.Controls.Add(this.flowLayoutPanel1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.lbUbi);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.lv);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.Name            = "Sims";
     this.flowLayoutPanel1.ResumeLayout(false);
     this.flowLayoutPanel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ListDisplay));
     this.button1                  = new System.Windows.Forms.Button();
     this.button2                  = new System.Windows.Forms.Button();
     this.button3                  = new System.Windows.Forms.Button();
     this.button4                  = new System.Windows.Forms.Button();
     this.button5                  = new System.Windows.Forms.Button();
     this.button6                  = new System.Windows.Forms.Button();
     this.label1                   = new System.Windows.Forms.Label();
     this.label2                   = new System.Windows.Forms.Label();
     this.label3                   = new System.Windows.Forms.Label();
     this.label4                   = new System.Windows.Forms.Label();
     this.label5                   = new System.Windows.Forms.Label();
     this.label6                   = new System.Windows.Forms.Label();
     this.dateTimePicker1          = new System.Windows.Forms.DateTimePicker();
     this.timer1                   = new System.Windows.Forms.Timer(this.components);
     this.button8                  = new System.Windows.Forms.Button();
     this.menuStrip1               = new System.Windows.Forms.MenuStrip();
     this.菜单ToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.chineseToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.englishToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.buttonfs                 = new System.Windows.Forms.Button();
     this.comm         = new System.IO.Ports.SerialPort(this.components);
     this.panel1       = new System.Windows.Forms.Panel();
     this.flush        = new System.Windows.Forms.Label();
     this.textBox1     = new System.Windows.Forms.TextBox();
     this.label7       = new System.Windows.Forms.Label();
     this.title        = new System.Windows.Forms.LinkLabel();
     this.purchaseBtn  = new System.Windows.Forms.Label();
     this.allRm        = new System.Windows.Forms.Label();
     this.cartWaterBtn = new System.Windows.Forms.Label();
     this.cartDongBtn  = new System.Windows.Forms.Label();
     this.cartLeBtn    = new System.Windows.Forms.Label();
     this.cartNiuBtn   = new System.Windows.Forms.Label();
     this.cartPearBtn  = new System.Windows.Forms.Label();
     this.cartTeaBtn   = new System.Windows.Forms.Label();
     this.cartWaterNo  = new System.Windows.Forms.Label();
     this.cartDongNo   = new System.Windows.Forms.Label();
     this.cartLeNo     = new System.Windows.Forms.Label();
     this.cartNiuNo    = new System.Windows.Forms.Label();
     this.cartPearNo   = new System.Windows.Forms.Label();
     this.cartTeaNo    = new System.Windows.Forms.Label();
     this.cartWater    = new System.Windows.Forms.Label();
     this.cartDong     = new System.Windows.Forms.Label();
     this.cartLe       = new System.Windows.Forms.Label();
     this.cartNiu      = new System.Windows.Forms.Label();
     this.cartPear     = new System.Windows.Forms.Label();
     this.cartTea      = new System.Windows.Forms.Label();
     this.Cart         = new System.Windows.Forms.Label();
     this.textBox0     = new System.Windows.Forms.TextBox();
     this.weihu        = new System.Windows.Forms.Label();
     this.weihuT       = new System.Windows.Forms.TextBox();
     this.weihufs      = new System.Windows.Forms.Label();
     this.weihujs      = new System.Windows.Forms.TextBox();
     this.menuStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // button1
     //
     this.button1.BackColor       = System.Drawing.Color.Transparent;
     this.button1.BackgroundImage = global::WindowsFormsApplication2.Properties.Resources.冰红茶3;
     resources.ApplyResources(this.button1, "button1");
     this.button1.Name = "button1";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.BackColor       = System.Drawing.Color.Transparent;
     this.button2.BackgroundImage = global::WindowsFormsApplication2.Properties.Resources.冰糖雪梨1;
     resources.ApplyResources(this.button2, "button2");
     this.button2.Name = "button2";
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // button3
     //
     this.button3.BackColor       = System.Drawing.Color.Transparent;
     this.button3.BackgroundImage = global::WindowsFormsApplication2.Properties.Resources.红牛;
     resources.ApplyResources(this.button3, "button3");
     this.button3.Name = "button3";
     this.button3.UseVisualStyleBackColor = false;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button4
     //
     this.button4.BackColor       = System.Drawing.Color.Transparent;
     this.button4.BackgroundImage = global::WindowsFormsApplication2.Properties.Resources.可口可乐;
     resources.ApplyResources(this.button4, "button4");
     this.button4.Name = "button4";
     this.button4.UseVisualStyleBackColor = false;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // button5
     //
     this.button5.BackColor       = System.Drawing.Color.Transparent;
     this.button5.BackgroundImage = global::WindowsFormsApplication2.Properties.Resources.动1;
     resources.ApplyResources(this.button5, "button5");
     this.button5.Name = "button5";
     this.button5.UseVisualStyleBackColor = false;
     this.button5.Click += new System.EventHandler(this.button5_Click);
     //
     // button6
     //
     this.button6.BackColor       = System.Drawing.Color.Transparent;
     this.button6.BackgroundImage = global::WindowsFormsApplication2.Properties.Resources.苏打水1;
     resources.ApplyResources(this.button6, "button6");
     this.button6.Name = "button6";
     this.button6.UseVisualStyleBackColor = false;
     this.button6.Click += new System.EventHandler(this.button6_Click);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.BackColor = System.Drawing.Color.White;
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Name      = "label1";
     this.label1.Click    += new System.EventHandler(this.label1_Click);
     //
     // label2
     //
     resources.ApplyResources(this.label2, "label2");
     this.label2.BackColor = System.Drawing.Color.White;
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Name      = "label2";
     this.label2.Click    += new System.EventHandler(this.label2_Click);
     //
     // label3
     //
     resources.ApplyResources(this.label3, "label3");
     this.label3.BackColor = System.Drawing.Color.White;
     this.label3.ForeColor = System.Drawing.Color.Black;
     this.label3.Name      = "label3";
     this.label3.Click    += new System.EventHandler(this.label3_Click);
     //
     // label4
     //
     resources.ApplyResources(this.label4, "label4");
     this.label4.BackColor = System.Drawing.Color.White;
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Name      = "label4";
     this.label4.Click    += new System.EventHandler(this.label4_Click);
     //
     // label5
     //
     resources.ApplyResources(this.label5, "label5");
     this.label5.BackColor = System.Drawing.Color.White;
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Name      = "label5";
     this.label5.Click    += new System.EventHandler(this.label5_Click);
     //
     // label6
     //
     resources.ApplyResources(this.label6, "label6");
     this.label6.BackColor = System.Drawing.Color.White;
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Name      = "label6";
     this.label6.Click    += new System.EventHandler(this.label6_Click);
     //
     // dateTimePicker1
     //
     resources.ApplyResources(this.dateTimePicker1, "dateTimePicker1");
     this.dateTimePicker1.CalendarMonthBackground   = System.Drawing.Color.Transparent;
     this.dateTimePicker1.CalendarTitleBackColor    = System.Drawing.Color.Transparent;
     this.dateTimePicker1.CalendarTitleForeColor    = System.Drawing.Color.Transparent;
     this.dateTimePicker1.CalendarTrailingForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.dateTimePicker1.Name  = "dateTimePicker1";
     this.dateTimePicker1.Value = new System.DateTime(2018, 5, 16, 16, 42, 19, 0);
     //
     // button8
     //
     this.button8.BackColor = System.Drawing.Color.Transparent;
     resources.ApplyResources(this.button8, "button8");
     this.button8.ForeColor = System.Drawing.Color.Black;
     this.button8.Name      = "button8";
     this.button8.UseVisualStyleBackColor = false;
     this.button8.Click += new System.EventHandler(this.button8_Click);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.菜单ToolStripMenuItem
     });
     resources.ApplyResources(this.menuStrip1, "menuStrip1");
     this.menuStrip1.Name = "menuStrip1";
     //
     // 菜单ToolStripMenuItem
     //
     this.菜单ToolStripMenuItem.Checked    = true;
     this.菜单ToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
     this.菜单ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.chineseToolStripMenuItem,
         this.englishToolStripMenuItem
     });
     resources.ApplyResources(this.菜单ToolStripMenuItem, "菜单ToolStripMenuItem");
     this.菜单ToolStripMenuItem.Name = "菜单ToolStripMenuItem";
     //
     // chineseToolStripMenuItem
     //
     this.chineseToolStripMenuItem.Name = "chineseToolStripMenuItem";
     resources.ApplyResources(this.chineseToolStripMenuItem, "chineseToolStripMenuItem");
     this.chineseToolStripMenuItem.Click += new System.EventHandler(this.chineseToolStripMenuItem_Click);
     //
     // englishToolStripMenuItem
     //
     this.englishToolStripMenuItem.Name = "englishToolStripMenuItem";
     resources.ApplyResources(this.englishToolStripMenuItem, "englishToolStripMenuItem");
     this.englishToolStripMenuItem.Click += new System.EventHandler(this.englishToolStripMenuItem_Click);
     //
     // buttonfs
     //
     this.buttonfs.BackColor = System.Drawing.Color.Red;
     resources.ApplyResources(this.buttonfs, "buttonfs");
     this.buttonfs.ForeColor = System.Drawing.Color.Black;
     this.buttonfs.Name      = "buttonfs";
     this.buttonfs.UseVisualStyleBackColor = false;
     this.buttonfs.Click += new System.EventHandler(this.buttonfs_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.RoyalBlue;
     this.panel1.Controls.Add(this.flush);
     this.panel1.Controls.Add(this.textBox1);
     this.panel1.Controls.Add(this.label7);
     this.panel1.Controls.Add(this.title);
     this.panel1.Controls.Add(this.purchaseBtn);
     this.panel1.Controls.Add(this.allRm);
     this.panel1.Controls.Add(this.cartWaterBtn);
     this.panel1.Controls.Add(this.cartDongBtn);
     this.panel1.Controls.Add(this.cartLeBtn);
     this.panel1.Controls.Add(this.cartNiuBtn);
     this.panel1.Controls.Add(this.cartPearBtn);
     this.panel1.Controls.Add(this.cartTeaBtn);
     this.panel1.Controls.Add(this.cartWaterNo);
     this.panel1.Controls.Add(this.cartDongNo);
     this.panel1.Controls.Add(this.cartLeNo);
     this.panel1.Controls.Add(this.cartNiuNo);
     this.panel1.Controls.Add(this.cartPearNo);
     this.panel1.Controls.Add(this.cartTeaNo);
     this.panel1.Controls.Add(this.cartWater);
     this.panel1.Controls.Add(this.cartDong);
     this.panel1.Controls.Add(this.cartLe);
     this.panel1.Controls.Add(this.cartNiu);
     this.panel1.Controls.Add(this.cartPear);
     this.panel1.Controls.Add(this.cartTea);
     this.panel1.Controls.Add(this.Cart);
     this.panel1.Controls.Add(this.buttonfs);
     this.panel1.ForeColor = System.Drawing.Color.Black;
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.Name   = "panel1";
     this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
     //
     // flush
     //
     resources.ApplyResources(this.flush, "flush");
     this.flush.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.flush.ForeColor   = System.Drawing.Color.Black;
     this.flush.Name        = "flush";
     this.flush.Click      += new System.EventHandler(this.flush_Click);
     //
     // textBox1
     //
     resources.ApplyResources(this.textBox1, "textBox1");
     this.textBox1.Name = "textBox1";
     //
     // label7
     //
     resources.ApplyResources(this.label7, "label7");
     this.label7.Name = "label7";
     //
     // title
     //
     resources.ApplyResources(this.title, "title");
     this.title.BackColor = System.Drawing.Color.Transparent;
     this.title.ForeColor = System.Drawing.Color.Black;
     this.title.LinkColor = System.Drawing.Color.Black;
     this.title.Name      = "title";
     this.title.TabStop   = true;
     //
     // purchaseBtn
     //
     resources.ApplyResources(this.purchaseBtn, "purchaseBtn");
     this.purchaseBtn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.purchaseBtn.ForeColor   = System.Drawing.Color.Black;
     this.purchaseBtn.Name        = "purchaseBtn";
     this.purchaseBtn.Click      += new System.EventHandler(this.purchaseBtn_Click);
     //
     // allRm
     //
     resources.ApplyResources(this.allRm, "allRm");
     this.allRm.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.allRm.ForeColor   = System.Drawing.Color.Black;
     this.allRm.Name        = "allRm";
     this.allRm.Click      += new System.EventHandler(this.allRm_Click);
     //
     // cartWaterBtn
     //
     resources.ApplyResources(this.cartWaterBtn, "cartWaterBtn");
     this.cartWaterBtn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cartWaterBtn.ForeColor   = System.Drawing.Color.Black;
     this.cartWaterBtn.Name        = "cartWaterBtn";
     this.cartWaterBtn.Click      += new System.EventHandler(this.cartWaterBtn_Click);
     //
     // cartDongBtn
     //
     resources.ApplyResources(this.cartDongBtn, "cartDongBtn");
     this.cartDongBtn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cartDongBtn.ForeColor   = System.Drawing.Color.Black;
     this.cartDongBtn.Name        = "cartDongBtn";
     this.cartDongBtn.Click      += new System.EventHandler(this.cartDongBtn_Click);
     //
     // cartLeBtn
     //
     resources.ApplyResources(this.cartLeBtn, "cartLeBtn");
     this.cartLeBtn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cartLeBtn.ForeColor   = System.Drawing.Color.Black;
     this.cartLeBtn.Name        = "cartLeBtn";
     this.cartLeBtn.Click      += new System.EventHandler(this.cartLeBtn_Click);
     //
     // cartNiuBtn
     //
     resources.ApplyResources(this.cartNiuBtn, "cartNiuBtn");
     this.cartNiuBtn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cartNiuBtn.ForeColor   = System.Drawing.Color.Black;
     this.cartNiuBtn.Name        = "cartNiuBtn";
     this.cartNiuBtn.Click      += new System.EventHandler(this.cartNiuBtn_Click);
     //
     // cartPearBtn
     //
     resources.ApplyResources(this.cartPearBtn, "cartPearBtn");
     this.cartPearBtn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cartPearBtn.ForeColor   = System.Drawing.Color.Black;
     this.cartPearBtn.Name        = "cartPearBtn";
     this.cartPearBtn.Click      += new System.EventHandler(this.cartPearBtn_Click);
     //
     // cartTeaBtn
     //
     resources.ApplyResources(this.cartTeaBtn, "cartTeaBtn");
     this.cartTeaBtn.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.cartTeaBtn.ForeColor   = System.Drawing.Color.Black;
     this.cartTeaBtn.Name        = "cartTeaBtn";
     this.cartTeaBtn.Click      += new System.EventHandler(this.cartTeaBtn_Click);
     //
     // cartWaterNo
     //
     resources.ApplyResources(this.cartWaterNo, "cartWaterNo");
     this.cartWaterNo.Name = "cartWaterNo";
     //
     // cartDongNo
     //
     resources.ApplyResources(this.cartDongNo, "cartDongNo");
     this.cartDongNo.Name = "cartDongNo";
     //
     // cartLeNo
     //
     resources.ApplyResources(this.cartLeNo, "cartLeNo");
     this.cartLeNo.Name = "cartLeNo";
     //
     // cartNiuNo
     //
     resources.ApplyResources(this.cartNiuNo, "cartNiuNo");
     this.cartNiuNo.Name = "cartNiuNo";
     //
     // cartPearNo
     //
     resources.ApplyResources(this.cartPearNo, "cartPearNo");
     this.cartPearNo.Name = "cartPearNo";
     //
     // cartTeaNo
     //
     resources.ApplyResources(this.cartTeaNo, "cartTeaNo");
     this.cartTeaNo.Name = "cartTeaNo";
     //
     // cartWater
     //
     resources.ApplyResources(this.cartWater, "cartWater");
     this.cartWater.ForeColor = System.Drawing.Color.Black;
     this.cartWater.Name      = "cartWater";
     //
     // cartDong
     //
     resources.ApplyResources(this.cartDong, "cartDong");
     this.cartDong.ForeColor = System.Drawing.Color.Black;
     this.cartDong.Name      = "cartDong";
     //
     // cartLe
     //
     resources.ApplyResources(this.cartLe, "cartLe");
     this.cartLe.ForeColor = System.Drawing.Color.Black;
     this.cartLe.Name      = "cartLe";
     //
     // cartNiu
     //
     resources.ApplyResources(this.cartNiu, "cartNiu");
     this.cartNiu.ForeColor = System.Drawing.Color.Black;
     this.cartNiu.Name      = "cartNiu";
     //
     // cartPear
     //
     resources.ApplyResources(this.cartPear, "cartPear");
     this.cartPear.ForeColor = System.Drawing.Color.Black;
     this.cartPear.Name      = "cartPear";
     //
     // cartTea
     //
     resources.ApplyResources(this.cartTea, "cartTea");
     this.cartTea.ForeColor = System.Drawing.Color.Black;
     this.cartTea.Name      = "cartTea";
     //
     // Cart
     //
     resources.ApplyResources(this.Cart, "Cart");
     this.Cart.ForeColor = System.Drawing.Color.Black;
     this.Cart.Name      = "Cart";
     //
     // textBox0
     //
     resources.ApplyResources(this.textBox0, "textBox0");
     this.textBox0.Name         = "textBox0";
     this.textBox0.TextChanged += new System.EventHandler(this.textBox0_TextChanged);
     //
     // weihu
     //
     resources.ApplyResources(this.weihu, "weihu");
     this.weihu.ForeColor = System.Drawing.Color.Black;
     this.weihu.Name      = "weihu";
     //
     // weihuT
     //
     resources.ApplyResources(this.weihuT, "weihuT");
     this.weihuT.Name         = "weihuT";
     this.weihuT.TextChanged += new System.EventHandler(this.weihuT_TextChanged);
     //
     // weihufs
     //
     resources.ApplyResources(this.weihufs, "weihufs");
     this.weihufs.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.weihufs.Cursor      = System.Windows.Forms.Cursors.Default;
     this.weihufs.ForeColor   = System.Drawing.Color.Black;
     this.weihufs.Name        = "weihufs";
     this.weihufs.Click      += new System.EventHandler(this.weihufs_Click);
     //
     // weihujs
     //
     resources.ApplyResources(this.weihujs, "weihujs");
     this.weihujs.Name         = "weihujs";
     this.weihujs.TextChanged += new System.EventHandler(this.weihujs_TextChanged);
     //
     // ListDisplay
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor     = System.Drawing.Color.White;
     this.Controls.Add(this.weihujs);
     this.Controls.Add(this.weihufs);
     this.Controls.Add(this.weihuT);
     this.Controls.Add(this.weihu);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.button8);
     this.Controls.Add(this.dateTimePicker1);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.button6);
     this.Controls.Add(this.button5);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.textBox0);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.ForeColor       = System.Drawing.Color.Transparent;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.HelpButton      = true;
     this.Name            = "ListDisplay";
     this.Load           += new System.EventHandler(this.Form2_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }