当前位置: 首页>>代码示例>>C#>>正文


C# System.ComponentModel.ComponentResourceManager.GetString方法代码示例

本文整理汇总了C#中System.ComponentModel.ComponentResourceManager.GetString方法的典型用法代码示例。如果您正苦于以下问题:C# System.ComponentModel.ComponentResourceManager.GetString方法的具体用法?C# System.ComponentModel.ComponentResourceManager.GetString怎么用?C# System.ComponentModel.ComponentResourceManager.GetString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.ComponentModel.ComponentResourceManager的用法示例。


在下文中一共展示了System.ComponentModel.ComponentResourceManager.GetString方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: InitializeComponent

		/// <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(TimeSpanPicker));
			this.comboBoxTimeSpan = new System.Windows.Forms.ComboBox();
			this.SuspendLayout();
			// 
			// comboBoxTimeSpan
			// 
			this.comboBoxTimeSpan.AutoCompleteCustomSource.AddRange(new string[] {
            resources.GetString("comboBoxTimeSpan.AutoCompleteCustomSource"),
            resources.GetString("comboBoxTimeSpan.AutoCompleteCustomSource1"),
            resources.GetString("comboBoxTimeSpan.AutoCompleteCustomSource2")});
			this.comboBoxTimeSpan.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
			this.comboBoxTimeSpan.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
			resources.ApplyResources(this.comboBoxTimeSpan, "comboBoxTimeSpan");
			this.comboBoxTimeSpan.FormattingEnabled = true;
			this.comboBoxTimeSpan.Name = "comboBoxTimeSpan";
			this.comboBoxTimeSpan.Leave += new System.EventHandler(this.comboBoxTimeSpan_Leave);
			this.comboBoxTimeSpan.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.comboBoxTimeSpan_Format);
			// 
			// TimeSpanPicker
			// 
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.comboBoxTimeSpan);
			this.Name = "TimeSpanPicker";
			this.ResumeLayout(false);

		}
开发者ID:tablesmit,项目名称:task-scheduler-managed-wrapper,代码行数:33,代码来源:TimeSpanPicker.Designer.cs

示例2: InitializeComponent

        /// <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(LanguageControl));
            this.metroComboBox1 = new MetroFramework.Controls.MetroComboBox();
            this.SuspendLayout();
            // 
            // metroComboBox1
            // 
            this.metroComboBox1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.metroComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.metroComboBox1.FontSize = MetroFramework.MetroLinkSize.Medium;
            this.metroComboBox1.FontWeight = MetroFramework.MetroLinkWeight.Regular;
            this.metroComboBox1.FormattingEnabled = true;
            resources.ApplyResources(this.metroComboBox1, "metroComboBox1");
            this.metroComboBox1.Items.AddRange(new object[] {
            resources.GetString("metroComboBox1.Items"),
            resources.GetString("metroComboBox1.Items1")});
            this.metroComboBox1.Name = "metroComboBox1";
            this.metroComboBox1.Style = MetroFramework.MetroColorStyle.Blue;
            this.metroComboBox1.StyleManager = null;
            this.metroComboBox1.Theme = MetroFramework.MetroThemeStyle.Light;
            this.metroComboBox1.SelectedIndexChanged += new System.EventHandler(this.metroComboBox1_SelectedIndexChanged);
            // 
            // LanguageControl
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.metroComboBox1);
            this.Name = "LanguageControl";
            this.ResumeLayout(false);

        }
开发者ID:SamuelDebruyn,项目名称:PenguinPlanner,代码行数:36,代码来源:LanguageControl.Designer.cs

示例3: InitializeComponent

    private void InitializeComponent() {
      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PleaseWaitDialog));
      this.lblMessage = new System.Windows.Forms.Label();
      this.SuspendLayout();
      // 
      // lblMessage
      // 
      this.lblMessage.AccessibleDescription = resources.GetString("lblMessage.AccessibleDescription");
      this.lblMessage.AccessibleName = resources.GetString("lblMessage.AccessibleName");
      resources.ApplyResources(this.lblMessage, "lblMessage");
      this.lblMessage.BackColor = System.Drawing.Color.Transparent;
      this.lblMessage.Name = "lblMessage";
      this.lblMessage.RightToLeft = ((System.Windows.Forms.RightToLeft) (resources.GetObject("lblMessage.RightToLeft")));
      this.lblMessage.UseMnemonic = false;
      // 
      // PleaseWaitDialog
      // 
      this.AccessibleDescription = resources.GetString("$this.AccessibleDescription");
      this.AccessibleName = resources.GetString("$this.AccessibleName");
      resources.ApplyResources(this, "$this");
      this.BackgroundImage = ((System.Drawing.Image) (resources.GetObject("$this.BackgroundImage")));
      this.ControlBox = false;
      this.Controls.Add(this.lblMessage);
      this.Font = ((System.Drawing.Font) (resources.GetObject("$this.Font")));
      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
      this.Icon = ((System.Drawing.Icon) (resources.GetObject("$this.Icon")));
      this.ImeMode = ((System.Windows.Forms.ImeMode) (resources.GetObject("$this.ImeMode")));
      this.Name = "PleaseWaitDialog";
      this.RightToLeft = ((System.Windows.Forms.RightToLeft) (resources.GetObject("$this.RightToLeft")));
      this.ShowInTaskbar = false;
      this.ResumeLayout(false);

    }
开发者ID:Gravenet,项目名称:POLUtils,代码行数:33,代码来源:PleaseWaitDialog.Designer.cs

示例4: InitializeComponent

        /// <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(AddFontsForm));
            this.buttonOK = new System.Windows.Forms.Button();
            this.buttonCancel = new System.Windows.Forms.Button();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.listBoxFonts = new System.Windows.Forms.ListBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // buttonOK
            // 
            resources.ApplyResources(this.buttonOK, "buttonOK");
            this.buttonOK.Name = "buttonOK";
            this.toolTip1.SetToolTip(this.buttonOK, resources.GetString("buttonOK.ToolTip"));
            this.buttonOK.UseVisualStyleBackColor = true;
            this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
            // 
            // buttonCancel
            // 
            resources.ApplyResources(this.buttonCancel, "buttonCancel");
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.buttonCancel.Name = "buttonCancel";
            this.toolTip1.SetToolTip(this.buttonCancel, resources.GetString("buttonCancel.ToolTip"));
            this.buttonCancel.UseVisualStyleBackColor = true;
            this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
            // 
            // groupBox1
            // 
            resources.ApplyResources(this.groupBox1, "groupBox1");
            this.groupBox1.Controls.Add(this.listBoxFonts);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.TabStop = false;
            this.toolTip1.SetToolTip(this.groupBox1, resources.GetString("groupBox1.ToolTip"));
            // 
            // listBoxFonts
            // 
            resources.ApplyResources(this.listBoxFonts, "listBoxFonts");
            this.listBoxFonts.FormattingEnabled = true;
            this.listBoxFonts.Name = "listBoxFonts";
            this.toolTip1.SetToolTip(this.listBoxFonts, resources.GetString("listBoxFonts.ToolTip"));
            this.listBoxFonts.SelectedValueChanged += new System.EventHandler(this.listBoxFonts_SelectedValueChanged);
            // 
            // AddFontsForm
            // 
            this.AcceptButton = this.buttonOK;
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.buttonCancel;
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.buttonCancel);
            this.Controls.Add(this.buttonOK);
            this.Name = "AddFontsForm";
            this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
            this.groupBox1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
开发者ID:rajeshwarn,项目名称:fb2converters,代码行数:64,代码来源:AddFontsForm.Designer.cs

示例5: InitializeComponent

        /// <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(AccountTypeControl));
            this.lblAccountType = new System.Windows.Forms.Label();
            this.cbAccountType = new System.Windows.Forms.ComboBox();
            this.SuspendLayout();
            // 
            // lblAccountType
            // 
            resources.ApplyResources(this.lblAccountType, "lblAccountType");
            this.lblAccountType.Name = "lblAccountType";
            // 
            // cbAccountType
            // 
            this.cbAccountType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cbAccountType.FormattingEnabled = true;
            this.cbAccountType.Items.AddRange(new object[] {
            resources.GetString("cbAccountType.Items"),
            resources.GetString("cbAccountType.Items1")});
            resources.ApplyResources(this.cbAccountType, "cbAccountType");
            this.cbAccountType.Name = "cbAccountType";
            // 
            // AccountTypeControl
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.cbAccountType);
            this.Controls.Add(this.lblAccountType);
            this.Name = "AccountTypeControl";
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:KamilKZ,项目名称:ShareX,代码行数:37,代码来源:AccountTypeControl.Designer.cs

示例6: InitializeComponent

        /// <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(AutocompleteSample));
            this.label1 = new System.Windows.Forms.Label();
            this.fctb = new BestCS.FastColoredTextBox();
            ((System.ComponentModel.ISupportInitialize)(this.fctb)).BeginInit();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.Dock = System.Windows.Forms.DockStyle.Top;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.label1.Location = new System.Drawing.Point(0, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(354, 50);
            this.label1.TabIndex = 2;
            this.label1.Text = "This example shows how to create simplest autocomplete functionality.\r\nPopup menu" +
    " contains 500000 words.";
            // 
            // fctb
            // 
            this.fctb.AutoIndent = false;
            this.fctb.AutoScrollMinSize = new System.Drawing.Size(0, 105);
            this.fctb.BackBrush = null;
            this.fctb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.fctb.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.fctb.DelayedEventsInterval = 500;
            this.fctb.DelayedTextChangedInterval = 500;
            this.fctb.DisabledColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
            this.fctb.Dock = System.Windows.Forms.DockStyle.Fill;
            this.fctb.Font = new System.Drawing.Font("Consolas", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.fctb.Hotkeys = resources.GetString("fctb.Hotkeys");
            this.fctb.IsReplaceMode = false;
            this.fctb.LeftBracket = '(';
            this.fctb.Location = new System.Drawing.Point(0, 50);
            this.fctb.Name = "fctb";
            this.fctb.Paddings = new System.Windows.Forms.Padding(0);
            this.fctb.RightBracket = ')';
            this.fctb.SelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            this.fctb.ShowLineNumbers = false;
            this.fctb.Size = new System.Drawing.Size(354, 211);
            this.fctb.TabIndex = 3;
            this.fctb.Text = resources.GetString("fctb.Text");
            this.fctb.WordWrap = true;
            this.fctb.KeyDown += new System.Windows.Forms.KeyEventHandler(this.fctb_KeyDown);
            // 
            // AutocompleteSample
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(354, 261);
            this.Controls.Add(this.fctb);
            this.Controls.Add(this.label1);
            this.Name = "AutocompleteSample";
            this.Text = "AutocompleteSample";
            ((System.ComponentModel.ISupportInitialize)(this.fctb)).EndInit();
            this.ResumeLayout(false);

        }
开发者ID:DinrusGroup,项目名称:DinrusIDE,代码行数:64,代码来源:AutocompleteSample.Designer.cs

示例7: InitializeComponent

        /// <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(frmECUBDMTypeSelection));
            this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
            this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
            this.groupControl1.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupControl1
            // 
            this.groupControl1.Controls.Add(this.comboBox1);
            resources.ApplyResources(this.groupControl1, "groupControl1");
            this.groupControl1.Name = "groupControl1";
            // 
            // comboBox1
            // 
            resources.ApplyResources(this.comboBox1, "comboBox1");
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Items.AddRange(new object[] {
            resources.GetString("comboBox1.Items"),
            resources.GetString("comboBox1.Items1"),
            resources.GetString("comboBox1.Items2"),
            resources.GetString("comboBox1.Items3"),
            resources.GetString("comboBox1.Items4")});
            this.comboBox1.Name = "comboBox1";
            // 
            // simpleButton1
            // 
            resources.ApplyResources(this.simpleButton1, "simpleButton1");
            this.simpleButton1.Name = "simpleButton1";
            this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
            // 
            // simpleButton2
            // 
            resources.ApplyResources(this.simpleButton2, "simpleButton2");
            this.simpleButton2.Name = "simpleButton2";
            this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
            // 
            // frmECUBDMTypeSelection
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.simpleButton2);
            this.Controls.Add(this.simpleButton1);
            this.Controls.Add(this.groupControl1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "frmECUBDMTypeSelection";
            this.ShowIcon = false;
            this.Load += new System.EventHandler(this.frmECUTypeSelection_Load);
            ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
            this.groupControl1.ResumeLayout(false);
            this.ResumeLayout(false);

        }
开发者ID:ChrisPea,项目名称:TuningSuites,代码行数:63,代码来源:frmECUBDMTypeSelection.Designer.cs

示例8: InitializeComponent

        /// <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(TagStatisticsChartControl));
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend legend1 = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series series1 = new System.Windows.Forms.DataVisualization.Charting.Series();
            System.Windows.Forms.Label lblType;
            this.comboBoxTagStatisticsType = new System.Windows.Forms.ComboBox();
            this.chartTagDetails = new System.Windows.Forms.DataVisualization.Charting.Chart();
            lblType = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.chartTagDetails)).BeginInit();
            this.SuspendLayout();
            // 
            // comboBoxTagStatisticsType
            // 
            this.comboBoxTagStatisticsType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxTagStatisticsType.FormattingEnabled = true;
            this.comboBoxTagStatisticsType.Items.AddRange(new object[] {
            resources.GetString("comboBoxTagStatisticsType.Items"),
            resources.GetString("comboBoxTagStatisticsType.Items1")});
            resources.ApplyResources(this.comboBoxTagStatisticsType, "comboBoxTagStatisticsType");
            this.comboBoxTagStatisticsType.Name = "comboBoxTagStatisticsType";
            this.comboBoxTagStatisticsType.SelectedIndexChanged += new System.EventHandler(this.comboBoxTagStatisticsType_SelectedIndexChanged);
            // 
            // chartTagDetails
            // 
            resources.ApplyResources(this.chartTagDetails, "chartTagDetails");
            this.chartTagDetails.BorderlineDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Solid;
            chartArea1.Name = "ChartAreaTags";
            this.chartTagDetails.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend1";
            this.chartTagDetails.Legends.Add(legend1);
            this.chartTagDetails.Name = "chartTagDetails";
            series1.ChartArea = "ChartAreaTags";
            series1.ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Pie;
            series1.Legend = "Legend1";
            series1.Name = "Tags";
            series1.XValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.String;
            series1.YValueType = System.Windows.Forms.DataVisualization.Charting.ChartValueType.Double;
            this.chartTagDetails.Series.Add(series1);
            // 
            // lblType
            // 
            resources.ApplyResources(lblType, "lblType");
            lblType.Name = "lblType";
            // 
            // TagStatisticsChartControl
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(lblType);
            this.Controls.Add(this.chartTagDetails);
            this.Controls.Add(this.comboBoxTagStatisticsType);
            this.Name = "TagStatisticsChartControl";
            ((System.ComponentModel.ISupportInitialize)(this.chartTagDetails)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:michyer,项目名称:canape,代码行数:63,代码来源:TagStatisticsChartControl.Designer.cs

示例9: InitializeComponent

        /// <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(ImportExportForm));
            this.buttonCancel = new System.Windows.Forms.Button();
            this.buttonLoad = new System.Windows.Forms.Button();
            this.buttonSave = new System.Windows.Forms.Button();
            this.buttonReset = new System.Windows.Forms.Button();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.SuspendLayout();
            // 
            // buttonCancel
            // 
            resources.ApplyResources(this.buttonCancel, "buttonCancel");
            this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.buttonCancel.Name = "buttonCancel";
            this.toolTip1.SetToolTip(this.buttonCancel, resources.GetString("buttonCancel.ToolTip"));
            this.buttonCancel.UseVisualStyleBackColor = true;
            // 
            // buttonLoad
            // 
            resources.ApplyResources(this.buttonLoad, "buttonLoad");
            this.buttonLoad.Name = "buttonLoad";
            this.toolTip1.SetToolTip(this.buttonLoad, resources.GetString("buttonLoad.ToolTip"));
            this.buttonLoad.UseVisualStyleBackColor = true;
            this.buttonLoad.Click += new System.EventHandler(this.buttonLoad_Click);
            // 
            // buttonSave
            // 
            resources.ApplyResources(this.buttonSave, "buttonSave");
            this.buttonSave.Name = "buttonSave";
            this.toolTip1.SetToolTip(this.buttonSave, resources.GetString("buttonSave.ToolTip"));
            this.buttonSave.UseVisualStyleBackColor = true;
            this.buttonSave.Click += new System.EventHandler(this.buttonSave_Click);
            // 
            // buttonReset
            // 
            resources.ApplyResources(this.buttonReset, "buttonReset");
            this.buttonReset.Name = "buttonReset";
            this.toolTip1.SetToolTip(this.buttonReset, resources.GetString("buttonReset.ToolTip"));
            this.buttonReset.UseVisualStyleBackColor = true;
            this.buttonReset.Click += new System.EventHandler(this.buttonReset_Click);
            // 
            // ImportExportForm
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.buttonReset);
            this.Controls.Add(this.buttonSave);
            this.Controls.Add(this.buttonLoad);
            this.Controls.Add(this.buttonCancel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Name = "ImportExportForm";
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.toolTip1.SetToolTip(this, resources.GetString("$this.ToolTip"));
            this.TopMost = true;
            this.ResumeLayout(false);

        }
开发者ID:rajeshwarn,项目名称:fb2converters,代码行数:63,代码来源:ImportExportForm.Designer.cs

示例10: InitializeComponent

        /// <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(dmEstoque));
            this.stiReportPRD = new Stimulsoft.Report.StiReport();
            this.stiReportPosicaoEstoque = new Stimulsoft.Report.StiReport();
            this.SuspendLayout();
            // 
            // stiReportPRD
            // 
            this.stiReportPRD.EngineVersion = Stimulsoft.Report.Engine.StiEngineVersion.EngineV2;
            this.stiReportPRD.ReferencedAssemblies = new string[] {
        "System.Dll",
        "System.Drawing.Dll",
        "System.Windows.Forms.Dll",
        "System.Data.Dll",
        "System.Xml.Dll",
        "Stimulsoft.Controls.Dll",
        "Stimulsoft.Base.Dll",
        "Stimulsoft.Report.Dll"};
            this.stiReportPRD.ReportAlias = "Report";
            this.stiReportPRD.ReportAuthor = "Build Sistemas";
            this.stiReportPRD.ReportDescription = "Relatório de produtos do sistema agrupado por Grupo";
            this.stiReportPRD.ReportGuid = "f9f001c1d18d4474be9a09361f3064ef";
            this.stiReportPRD.ReportName = "Report";
            this.stiReportPRD.ReportSource = resources.GetString("stiReportPRD.ReportSource");
            this.stiReportPRD.ReportUnit = Stimulsoft.Report.StiReportUnitType.Centimeters;
            this.stiReportPRD.ScriptLanguage = Stimulsoft.Report.StiReportLanguageType.CSharp;
            this.stiReportPRD.UseProgressInThread = false;
            // 
            // stiReportPosicaoEstoque
            // 
            this.stiReportPosicaoEstoque.EngineVersion = Stimulsoft.Report.Engine.StiEngineVersion.EngineV2;
            this.stiReportPosicaoEstoque.ReferencedAssemblies = new string[] {
        "System.Dll",
        "System.Drawing.Dll",
        "System.Windows.Forms.Dll",
        "System.Data.Dll",
        "System.Xml.Dll",
        "Stimulsoft.Controls.Dll",
        "Stimulsoft.Base.Dll",
        "Stimulsoft.Report.Dll"};
            this.stiReportPosicaoEstoque.ReportAlias = "Report";
            this.stiReportPosicaoEstoque.ReportAuthor = "Build Sistemas";
            this.stiReportPosicaoEstoque.ReportDescription = "Relatório de Base do sistema";
            this.stiReportPosicaoEstoque.ReportGuid = "288950bac86e4284ac1e97257a389446";
            this.stiReportPosicaoEstoque.ReportName = "Report";
            this.stiReportPosicaoEstoque.ReportSource = resources.GetString("stiReportPosicaoEstoque.ReportSource");
            this.stiReportPosicaoEstoque.ReportUnit = Stimulsoft.Report.StiReportUnitType.Centimeters;
            this.stiReportPosicaoEstoque.ScriptLanguage = Stimulsoft.Report.StiReportLanguageType.CSharp;
            this.stiReportPosicaoEstoque.UseProgressInThread = false;
            // 
            // dmEstoque
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.ClientSize = new System.Drawing.Size(165, 21);
            this.Name = "dmEstoque";
            this.ResumeLayout(false);

        }
开发者ID:AndersonGoncalves,项目名称:Build.Siac,代码行数:63,代码来源:dmEstoque.Designer.cs

示例11: InitializeComponent

        /// <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(ConfigAccelerometerCalibrationPlane));
            this.label28 = new System.Windows.Forms.Label();
            this.BUT_levelplane = new ArdupilotMega.Controls.MyButton();
            this.CHK_manuallevel = new System.Windows.Forms.CheckBox();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // label28
            // 
            resources.ApplyResources(this.label28, "label28");
            this.label28.Name = "label28";
            // 
            // BUT_levelplane
            // 
            resources.ApplyResources(this.BUT_levelplane, "BUT_levelplane");
            this.BUT_levelplane.Name = "BUT_levelplane";
            this.toolTip1.SetToolTip(this.BUT_levelplane, resources.GetString("BUT_levelplane.ToolTip"));
            this.BUT_levelplane.UseVisualStyleBackColor = true;
            this.BUT_levelplane.Click += new System.EventHandler(this.BUT_levelplane_Click);
            // 
            // CHK_manuallevel
            // 
            resources.ApplyResources(this.CHK_manuallevel, "CHK_manuallevel");
            this.CHK_manuallevel.Name = "CHK_manuallevel";
            this.toolTip1.SetToolTip(this.CHK_manuallevel, resources.GetString("CHK_manuallevel.ToolTip"));
            this.CHK_manuallevel.UseVisualStyleBackColor = true;
            this.CHK_manuallevel.CheckedChanged += new System.EventHandler(this.CHK_manuallevel_CheckedChanged);
            // 
            // label1
            // 
            resources.ApplyResources(this.label1, "label1");
            this.label1.Name = "label1";
            // 
            // label2
            // 
            resources.ApplyResources(this.label2, "label2");
            this.label2.Name = "label2";
            // 
            // ConfigAccelerometerCalibrationPlane
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.CHK_manuallevel);
            this.Controls.Add(this.label28);
            this.Controls.Add(this.BUT_levelplane);
            this.Name = "ConfigAccelerometerCalibrationPlane";
            this.Load += new System.EventHandler(this.ConfigAccelerometerCalibration_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:mmcguinn,项目名称:UML-S12-UAV,代码行数:62,代码来源:ConfigAccelerometerCalibrationPlane.Designer.cs

示例12: InitializeComponent

        /// <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(SimpleGuide));
            this.doDragDropLabel = new System.Windows.Forms.Label();
            this.clickCheckBoxLabel = new System.Windows.Forms.Label();
            this.doPackLabel = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // doDragDropLabel
            // 
            this.doDragDropLabel.AutoSize = true;
            this.doDragDropLabel.ForeColor = System.Drawing.Color.Silver;
            this.doDragDropLabel.Location = new System.Drawing.Point(13, 13);
            this.doDragDropLabel.Name = "doDragDropLabel";
            this.doDragDropLabel.Size = new System.Drawing.Size(551, 136);
            this.doDragDropLabel.TabIndex = 0;
            this.doDragDropLabel.Text = resources.GetString("doDragDropLabel.Text");
            // 
            // clickCheckBoxLabel
            // 
            this.clickCheckBoxLabel.AutoSize = true;
            this.clickCheckBoxLabel.ForeColor = System.Drawing.Color.Silver;
            this.clickCheckBoxLabel.Location = new System.Drawing.Point(12, 165);
            this.clickCheckBoxLabel.Name = "clickCheckBoxLabel";
            this.clickCheckBoxLabel.Size = new System.Drawing.Size(560, 68);
            this.clickCheckBoxLabel.TabIndex = 1;
            this.clickCheckBoxLabel.Text = resources.GetString("clickCheckBoxLabel.Text");
            // 
            // doPackLabel
            // 
            this.doPackLabel.AutoSize = true;
            this.doPackLabel.ForeColor = System.Drawing.Color.Silver;
            this.doPackLabel.Location = new System.Drawing.Point(11, 247);
            this.doPackLabel.Name = "doPackLabel";
            this.doPackLabel.Size = new System.Drawing.Size(577, 153);
            this.doPackLabel.TabIndex = 2;
            this.doPackLabel.Text = resources.GetString("doPackLabel.Text");
            // 
            // SimpleGuide
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
            this.ClientSize = new System.Drawing.Size(605, 411);
            this.Controls.Add(this.doPackLabel);
            this.Controls.Add(this.clickCheckBoxLabel);
            this.Controls.Add(this.doDragDropLabel);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "SimpleGuide";
            this.Text = "Simple (Temporary) Guide - Preparing a prettier one soon...";
            this.TopMost = true;
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:anirnet,项目名称:raf-manager,代码行数:62,代码来源:SimpleGuide.Designer.cs

示例13: InitializeComponent

        /// <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.Windows.Forms.Label label2;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ScriptSelectionControl));
            System.Windows.Forms.Label label1;
            this.comboBoxClassName = new System.Windows.Forms.ComboBox();
            this.comboBoxScript = new System.Windows.Forms.ComboBox();
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            label2 = new System.Windows.Forms.Label();
            label1 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // label2
            // 
            resources.ApplyResources(label2, "label2");
            label2.Name = "label2";
            this.toolTip.SetToolTip(label2, resources.GetString("label2.ToolTip"));
            // 
            // label1
            // 
            resources.ApplyResources(label1, "label1");
            label1.Name = "label1";
            this.toolTip.SetToolTip(label1, resources.GetString("label1.ToolTip"));
            // 
            // comboBoxClassName
            // 
            resources.ApplyResources(this.comboBoxClassName, "comboBoxClassName");
            this.comboBoxClassName.FormattingEnabled = true;
            this.comboBoxClassName.Name = "comboBoxClassName";
            this.toolTip.SetToolTip(this.comboBoxClassName, resources.GetString("comboBoxClassName.ToolTip"));
            this.comboBoxClassName.TextChanged += new System.EventHandler(this.comboBoxClassName_TextChanged);
            // 
            // comboBoxScript
            // 
            resources.ApplyResources(this.comboBoxScript, "comboBoxScript");
            this.comboBoxScript.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxScript.FormattingEnabled = true;
            this.comboBoxScript.Name = "comboBoxScript";
            this.toolTip.SetToolTip(this.comboBoxScript, resources.GetString("comboBoxScript.ToolTip"));
            this.comboBoxScript.DropDown += new System.EventHandler(this.comboBoxScript_DropDown);
            this.comboBoxScript.SelectedIndexChanged += new System.EventHandler(this.comboBoxScript_SelectedIndexChanged);
            // 
            // ScriptSelectionControl
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(label2);
            this.Controls.Add(this.comboBoxClassName);
            this.Controls.Add(label1);
            this.Controls.Add(this.comboBoxScript);
            this.Name = "ScriptSelectionControl";
            this.toolTip.SetToolTip(this, resources.GetString("$this.ToolTip"));
            this.Load += new System.EventHandler(this.ScriptSelectionControl_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }
开发者ID:michyer,项目名称:canape,代码行数:62,代码来源:ScriptSelectionControl.Designer.cs

示例14: InitializeComponent

        /// <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(IMEsample));
            this.label1 = new System.Windows.Forms.Label();
            this.fctb = new FastColoredTextBoxNS.FastColoredTextBox();
            ((System.ComponentModel.ISupportInitialize)(this.fctb)).BeginInit();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.Dock = System.Windows.Forms.DockStyle.Top;
            this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.label1.Location = new System.Drawing.Point(0, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(417, 85);
            this.label1.TabIndex = 3;
            this.label1.Text = resources.GetString("label1.Text");
            // 
            // fctb
            // 
            this.fctb.AutoIndent = false;
            this.fctb.AutoScrollMinSize = new System.Drawing.Size(0, 264);
            this.fctb.BackBrush = null;
            this.fctb.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.fctb.CharHeight = 24;
            this.fctb.CharWidth = 12;
            this.fctb.Cursor = System.Windows.Forms.Cursors.IBeam;
            this.fctb.DisabledColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
            this.fctb.Dock = System.Windows.Forms.DockStyle.Fill;
            this.fctb.Font = new System.Drawing.Font("Consolas", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.fctb.ImeMode = System.Windows.Forms.ImeMode.On;
            this.fctb.IsReplaceMode = false;
            this.fctb.LeftBracket = '(';
            this.fctb.Location = new System.Drawing.Point(0, 85);
            this.fctb.Name = "fctb";
            this.fctb.Paddings = new System.Windows.Forms.Padding(0);
            this.fctb.RightBracket = ')';
            this.fctb.SelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(255)))));
            this.fctb.ShowLineNumbers = false;
            this.fctb.Size = new System.Drawing.Size(417, 217);
            this.fctb.TabIndex = 2;
            this.fctb.Text = resources.GetString("fctb.Text");
            this.fctb.WordWrap = true;
            // 
            // IMEsample
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(417, 302);
            this.Controls.Add(this.fctb);
            this.Controls.Add(this.label1);
            this.Name = "IMEsample";
            this.Text = "IMEsample";
            ((System.ComponentModel.ISupportInitialize)(this.fctb)).EndInit();
            this.ResumeLayout(false);

        }
开发者ID:Celtech,项目名称:BolDevStudio,代码行数:62,代码来源:IMEsample.Designer.cs

示例15: InitializeComponent

        /// <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(PanelPhonetic));
            this.m_pnSelf = new System.Windows.Forms.Panel();
            this.m_lbSelectionKeys = new System.Windows.Forms.Label();
            this.m_tbSelectionKeys = new System.Windows.Forms.TextBox();
            this.m_lbKeyboardLayout = new System.Windows.Forms.Label();
            this.m_cbKeyboardLayout = new System.Windows.Forms.ComboBox();
            this.m_pnSelf.SuspendLayout();
            this.SuspendLayout();
            // 
            // m_pnSelf
            // 
            this.m_pnSelf.Controls.Add(this.m_lbSelectionKeys);
            this.m_pnSelf.Controls.Add(this.m_tbSelectionKeys);
            this.m_pnSelf.Controls.Add(this.m_lbKeyboardLayout);
            this.m_pnSelf.Controls.Add(this.m_cbKeyboardLayout);
            resources.ApplyResources(this.m_pnSelf, "m_pnSelf");
            this.m_pnSelf.Name = "m_pnSelf";
            // 
            // m_lbSelectionKeys
            // 
            resources.ApplyResources(this.m_lbSelectionKeys, "m_lbSelectionKeys");
            this.m_lbSelectionKeys.Name = "m_lbSelectionKeys";
            // 
            // m_tbSelectionKeys
            // 
            resources.ApplyResources(this.m_tbSelectionKeys, "m_tbSelectionKeys");
            this.m_tbSelectionKeys.Name = "m_tbSelectionKeys";
            this.m_tbSelectionKeys.TextChanged += new System.EventHandler(this.m_tbSelectionKeys_TextChanged);
            // 
            // m_lbKeyboardLayout
            // 
            resources.ApplyResources(this.m_lbKeyboardLayout, "m_lbKeyboardLayout");
            this.m_lbKeyboardLayout.Name = "m_lbKeyboardLayout";
            // 
            // m_cbKeyboardLayout
            // 
            this.m_cbKeyboardLayout.FormattingEnabled = true;
            this.m_cbKeyboardLayout.Items.AddRange(new object[] {
            resources.GetString("m_cbKeyboardLayout.Items"),
            resources.GetString("m_cbKeyboardLayout.Items1")});
            resources.ApplyResources(this.m_cbKeyboardLayout, "m_cbKeyboardLayout");
            this.m_cbKeyboardLayout.Name = "m_cbKeyboardLayout";
            this.m_cbKeyboardLayout.SelectedIndexChanged += new System.EventHandler(this.m_cbKeyboardLayout_SelectedIndexChanged);
            // 
            // PanelPhonetic
            // 
            resources.ApplyResources(this, "$this");
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.m_pnSelf);
            this.Name = "PanelPhonetic";
            this.m_pnSelf.ResumeLayout(false);
            this.m_pnSelf.PerformLayout();
            this.ResumeLayout(false);

        }
开发者ID:bubbletreefrog,项目名称:OpenVanilla-Win32,代码行数:61,代码来源:PanelPhonetic.Designer.cs


注:本文中的System.ComponentModel.ComponentResourceManager.GetString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。