Ejemplo n.º 1
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Gets the selected ParaText project short name from the selected item in a combo box
		/// list.
		/// </summary>
		/// <param name="cbo">The combo box.</param>
		/// <returns>Paratext project short name</returns>
		/// ------------------------------------------------------------------------------------
		private string GetPTShortName(FwOverrideComboBox cbo)
		{
			return ((ScrText)cbo.Items[cbo.SelectedIndex]).Name;
		}
Ejemplo n.º 2
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Initialize a combo box with the columns that can be sources or targets for string manipulations.
		/// If possible select an item with the same name.
		/// If not select the first item if any.
		/// If none set the Text to 'no choices'.
		/// </summary>
		/// <param name="combo">The combo.</param>
		/// <param name="fIsSourceCombo">if set to <c>true</c> [f is source combo].</param>
		/// ------------------------------------------------------------------------------------
		protected void InitStringCombo(FwOverrideComboBox combo, bool fIsSourceCombo)
		{
			FieldComboItem selectedItem = combo.SelectedItem as FieldComboItem;
			combo.ClearItems();
//			FieldComboItem newSelection = AddStringFieldItemsToCombo(combo, selectedItem, fIsSourceCombo);
			AddStringFieldItemsToCombo(combo, selectedItem, fIsSourceCombo);
			if (combo.Items.Count == 0)
			{
				combo.Text = XMLViewsStrings.ksNoChoices;
				return;
			}
			// NOTE: Don't re-set the item here, let BulkEditBarTabSettings do it.
			//if (newSelection == null)
			//    combo.SelectedIndex = 0;
			//else
			//    combo.SelectedItem = newSelection;
		}
Ejemplo n.º 3
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Load the given combobox and select the selected project, if any.
		/// </summary>
		/// <param name="cbo">The combo box to load</param>
		/// <param name="selectedProj">The short name of the project to select</param>
		/// ------------------------------------------------------------------------------------
		private void LoadParatextProjectCombo(FwOverrideComboBox cbo, string selectedProj)
		{
			// Initialize the combobox with a sorted list of language projects:
			//   language name (project short name)
			cbo.Items.AddRange(m_PTLangProjects.ToArray());

			// Select the appropriate project in the list.
			if (!string.IsNullOrEmpty(selectedProj))
			{
				for (int i = 0; i < cbo.Items.Count; i++)
				{
					if (selectedProj == ((ScrText)cbo.Items[i]).Name)
						cbo.SelectedIndex = i;
				}
			}

			// If no project is set, select the first one.
			if (cbo.SelectedIndex < 0 && cbo.Items.Count > 0)
				cbo.SelectedIndex = 0;
		}
Ejemplo n.º 4
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Gets the selected ParaText project short name from the selected item in a combo box
		/// list.
		/// </summary>
		/// <param name="cbo">The combo box.</param>
		/// <returns>Paratext project short name</returns>
		/// ------------------------------------------------------------------------------------
		private string GetPTShortName(FwOverrideComboBox cbo)
		{
			string shortName = ((ScrText)cbo.Items[cbo.SelectedIndex]).Name;
			return shortName != s_noneProject.Name ? shortName : null;
		}
Ejemplo n.º 5
0
		/// <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(FwNewLangProject));
			System.Windows.Forms.Label m_lblExplainDialog;
			System.Windows.Forms.Label m_lblExplainName;
			System.Windows.Forms.Label m_lblExplainVernWrtSys;
			System.Windows.Forms.Label m_lblExplainAnalWrtSys;
			System.Windows.Forms.Button m_btnNewVernWrtSys;
			System.Windows.Forms.Label m_lblTipText;
			System.Windows.Forms.Button m_btnNewAnalWrtSys;
			System.Windows.Forms.Label lblTip;
			System.Windows.Forms.Label m_lblExplainWrtSys;
			System.Windows.Forms.Label m_lblAnalysisWrtSys;
			this.btnOK = new System.Windows.Forms.Button();
			this.btnHelp = new System.Windows.Forms.Button();
			this.m_txtName = new System.Windows.Forms.TextBox();
			this.helpProvider1 = new System.Windows.Forms.HelpProvider();
			this.m_lblVernacularWrtSys = new System.Windows.Forms.Label();
			this.m_cbVernWrtSys = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_cbAnalWrtSys = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_lblProjectName = new System.Windows.Forms.Label();
			this.m_lblSpecifyWrtSys = new System.Windows.Forms.Label();
			btnCancel = new System.Windows.Forms.Button();
			m_lblExplainDialog = new System.Windows.Forms.Label();
			m_lblExplainName = new System.Windows.Forms.Label();
			m_lblExplainVernWrtSys = new System.Windows.Forms.Label();
			m_lblExplainAnalWrtSys = new System.Windows.Forms.Label();
			m_btnNewVernWrtSys = new System.Windows.Forms.Button();
			m_lblTipText = new System.Windows.Forms.Label();
			m_btnNewAnalWrtSys = new System.Windows.Forms.Button();
			lblTip = new System.Windows.Forms.Label();
			m_lblExplainWrtSys = new System.Windows.Forms.Label();
			m_lblAnalysisWrtSys = new System.Windows.Forms.Label();
			this.SuspendLayout();
			//
			// btnCancel
			//
			btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.helpProvider1.SetHelpString(btnCancel, resources.GetString("btnCancel.HelpString"));
			resources.ApplyResources(btnCancel, "btnCancel");
			btnCancel.Name = "btnCancel";
			this.helpProvider1.SetShowHelp(btnCancel, ((bool)(resources.GetObject("btnCancel.ShowHelp"))));
			//
			// m_lblExplainDialog
			//
			resources.ApplyResources(m_lblExplainDialog, "m_lblExplainDialog");
			m_lblExplainDialog.Name = "m_lblExplainDialog";
			this.helpProvider1.SetShowHelp(m_lblExplainDialog, ((bool)(resources.GetObject("m_lblExplainDialog.ShowHelp"))));
			//
			// m_lblExplainName
			//
			resources.ApplyResources(m_lblExplainName, "m_lblExplainName");
			m_lblExplainName.Name = "m_lblExplainName";
			this.helpProvider1.SetShowHelp(m_lblExplainName, ((bool)(resources.GetObject("m_lblExplainName.ShowHelp"))));
			//
			// m_lblExplainVernWrtSys
			//
			resources.ApplyResources(m_lblExplainVernWrtSys, "m_lblExplainVernWrtSys");
			m_lblExplainVernWrtSys.Name = "m_lblExplainVernWrtSys";
			this.helpProvider1.SetShowHelp(m_lblExplainVernWrtSys, ((bool)(resources.GetObject("m_lblExplainVernWrtSys.ShowHelp"))));
			//
			// m_lblExplainAnalWrtSys
			//
			resources.ApplyResources(m_lblExplainAnalWrtSys, "m_lblExplainAnalWrtSys");
			m_lblExplainAnalWrtSys.Name = "m_lblExplainAnalWrtSys";
			this.helpProvider1.SetShowHelp(m_lblExplainAnalWrtSys, ((bool)(resources.GetObject("m_lblExplainAnalWrtSys.ShowHelp"))));
			//
			// m_btnNewVernWrtSys
			//
			this.helpProvider1.SetHelpString(m_btnNewVernWrtSys, resources.GetString("m_btnNewVernWrtSys.HelpString"));
			resources.ApplyResources(m_btnNewVernWrtSys, "m_btnNewVernWrtSys");
			m_btnNewVernWrtSys.Name = "m_btnNewVernWrtSys";
			this.helpProvider1.SetShowHelp(m_btnNewVernWrtSys, ((bool)(resources.GetObject("m_btnNewVernWrtSys.ShowHelp"))));
			m_btnNewVernWrtSys.Click += new System.EventHandler(this.m_btnNewVernWrtSys_Click);
			//
			// m_lblTipText
			//
			resources.ApplyResources(m_lblTipText, "m_lblTipText");
			m_lblTipText.Name = "m_lblTipText";
			this.helpProvider1.SetShowHelp(m_lblTipText, ((bool)(resources.GetObject("m_lblTipText.ShowHelp"))));
			//
			// m_btnNewAnalWrtSys
			//
			this.helpProvider1.SetHelpString(m_btnNewAnalWrtSys, resources.GetString("m_btnNewAnalWrtSys.HelpString"));
			resources.ApplyResources(m_btnNewAnalWrtSys, "m_btnNewAnalWrtSys");
			m_btnNewAnalWrtSys.Name = "m_btnNewAnalWrtSys";
			this.helpProvider1.SetShowHelp(m_btnNewAnalWrtSys, ((bool)(resources.GetObject("m_btnNewAnalWrtSys.ShowHelp"))));
			m_btnNewAnalWrtSys.Click += new System.EventHandler(this.m_btnNewAnalWrtSys_Click);
			//
			// lblTip
			//
			resources.ApplyResources(lblTip, "lblTip");
			lblTip.Name = "lblTip";
			this.helpProvider1.SetShowHelp(lblTip, ((bool)(resources.GetObject("lblTip.ShowHelp"))));
			//
			// m_lblExplainWrtSys
			//
			resources.ApplyResources(m_lblExplainWrtSys, "m_lblExplainWrtSys");
			m_lblExplainWrtSys.Name = "m_lblExplainWrtSys";
			this.helpProvider1.SetShowHelp(m_lblExplainWrtSys, ((bool)(resources.GetObject("m_lblExplainWrtSys.ShowHelp"))));
			//
			// m_lblAnalysisWrtSys
			//
			resources.ApplyResources(m_lblAnalysisWrtSys, "m_lblAnalysisWrtSys");
			m_lblAnalysisWrtSys.Name = "m_lblAnalysisWrtSys";
			this.helpProvider1.SetShowHelp(m_lblAnalysisWrtSys, ((bool)(resources.GetObject("m_lblAnalysisWrtSys.ShowHelp"))));
			//
			// btnOK
			//
			this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			resources.ApplyResources(this.btnOK, "btnOK");
			this.helpProvider1.SetHelpString(this.btnOK, resources.GetString("btnOK.HelpString"));
			this.btnOK.Name = "btnOK";
			this.helpProvider1.SetShowHelp(this.btnOK, ((bool)(resources.GetObject("btnOK.ShowHelp"))));
			this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
			//
			// btnHelp
			//
			this.helpProvider1.SetHelpString(this.btnHelp, resources.GetString("btnHelp.HelpString"));
			resources.ApplyResources(this.btnHelp, "btnHelp");
			this.btnHelp.Name = "btnHelp";
			this.helpProvider1.SetShowHelp(this.btnHelp, ((bool)(resources.GetObject("btnHelp.ShowHelp"))));
			this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
			//
			// m_txtName
			//
			this.helpProvider1.SetHelpString(this.m_txtName, resources.GetString("m_txtName.HelpString"));
			resources.ApplyResources(this.m_txtName, "m_txtName");
			this.m_txtName.Name = "m_txtName";
			this.helpProvider1.SetShowHelp(this.m_txtName, ((bool)(resources.GetObject("m_txtName.ShowHelp"))));
			this.m_txtName.TextChanged += new System.EventHandler(this.m_txtName_TextChanged);
			//
			// m_lblVernacularWrtSys
			//
			resources.ApplyResources(this.m_lblVernacularWrtSys, "m_lblVernacularWrtSys");
			this.m_lblVernacularWrtSys.Name = "m_lblVernacularWrtSys";
			this.helpProvider1.SetShowHelp(this.m_lblVernacularWrtSys, ((bool)(resources.GetObject("m_lblVernacularWrtSys.ShowHelp"))));
			//
			// m_cbVernWrtSys
			//
			this.m_cbVernWrtSys.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider1.SetHelpString(this.m_cbVernWrtSys, resources.GetString("m_cbVernWrtSys.HelpString"));
			resources.ApplyResources(this.m_cbVernWrtSys, "m_cbVernWrtSys");
			this.m_cbVernWrtSys.Name = "m_cbVernWrtSys";
			this.helpProvider1.SetShowHelp(this.m_cbVernWrtSys, ((bool)(resources.GetObject("m_cbVernWrtSys.ShowHelp"))));
			this.m_cbVernWrtSys.Sorted = true;
			//
			// m_cbAnalWrtSys
			//
			this.m_cbAnalWrtSys.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider1.SetHelpString(this.m_cbAnalWrtSys, resources.GetString("m_cbAnalWrtSys.HelpString"));
			resources.ApplyResources(this.m_cbAnalWrtSys, "m_cbAnalWrtSys");
			this.m_cbAnalWrtSys.Name = "m_cbAnalWrtSys";
			this.helpProvider1.SetShowHelp(this.m_cbAnalWrtSys, ((bool)(resources.GetObject("m_cbAnalWrtSys.ShowHelp"))));
			this.m_cbAnalWrtSys.Sorted = true;
			//
			// m_lblProjectName
			//
			resources.ApplyResources(this.m_lblProjectName, "m_lblProjectName");
			this.m_lblProjectName.Name = "m_lblProjectName";
			this.helpProvider1.SetShowHelp(this.m_lblProjectName, ((bool)(resources.GetObject("m_lblProjectName.ShowHelp"))));
			//
			// m_lblSpecifyWrtSys
			//
			resources.ApplyResources(this.m_lblSpecifyWrtSys, "m_lblSpecifyWrtSys");
			this.m_lblSpecifyWrtSys.Name = "m_lblSpecifyWrtSys";
			this.helpProvider1.SetShowHelp(this.m_lblSpecifyWrtSys, ((bool)(resources.GetObject("m_lblSpecifyWrtSys.ShowHelp"))));
			//
			// FwNewLangProject
			//
			this.AcceptButton = this.btnOK;
			resources.ApplyResources(this, "$this");
			this.CancelButton = btnCancel;
			this.Controls.Add(m_lblTipText);
			this.Controls.Add(lblTip);
			this.Controls.Add(m_btnNewVernWrtSys);
			this.Controls.Add(this.m_cbVernWrtSys);
			this.Controls.Add(m_lblExplainVernWrtSys);
			this.Controls.Add(this.m_lblVernacularWrtSys);
			this.Controls.Add(m_lblAnalysisWrtSys);
			this.Controls.Add(this.m_lblSpecifyWrtSys);
			this.Controls.Add(this.m_txtName);
			this.Controls.Add(this.m_lblProjectName);
			this.Controls.Add(m_btnNewAnalWrtSys);
			this.Controls.Add(this.m_cbAnalWrtSys);
			this.Controls.Add(m_lblExplainAnalWrtSys);
			this.Controls.Add(m_lblExplainWrtSys);
			this.Controls.Add(m_lblExplainName);
			this.Controls.Add(m_lblExplainDialog);
			this.Controls.Add(this.btnHelp);
			this.Controls.Add(this.btnOK);
			this.Controls.Add(btnCancel);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FwNewLangProject";
			this.helpProvider1.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			this.ShowInTaskbar = false;
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 6
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(SimpleIntegerMatchDlg));
     this.m_comboMatchType = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
     this.m_labelAnd       = new System.Windows.Forms.Label();
     this.m_cancelButton   = new System.Windows.Forms.Button();
     this.m_okButton       = new System.Windows.Forms.Button();
     this.m_nudVal1        = new System.Windows.Forms.NumericUpDown();
     this.m_nudVal2        = new System.Windows.Forms.NumericUpDown();
     this.m_helpButton     = new System.Windows.Forms.Button();
     this.helpProvider1    = new HelpProvider();
     ((System.ComponentModel.ISupportInitialize)(this.m_nudVal1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_nudVal2)).BeginInit();
     this.SuspendLayout();
     //
     // m_comboMatchType
     //
     this.m_comboMatchType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.m_comboMatchType.Items.AddRange(new object[] {
         resources.GetString("m_comboMatchType.Items"),
         resources.GetString("m_comboMatchType.Items1"),
         resources.GetString("m_comboMatchType.Items2"),
         resources.GetString("m_comboMatchType.Items3"),
         resources.GetString("m_comboMatchType.Items4"),
         resources.GetString("m_comboMatchType.Items5"),
         resources.GetString("m_comboMatchType.Items6")
     });
     resources.ApplyResources(this.m_comboMatchType, "m_comboMatchType");
     this.m_comboMatchType.Name = "m_comboMatchType";
     this.m_comboMatchType.SelectedIndexChanged += new System.EventHandler(this.m_comboMatchType_SelectedIndexChanged);
     //
     // m_labelAnd
     //
     resources.ApplyResources(this.m_labelAnd, "m_labelAnd");
     this.m_labelAnd.Name = "m_labelAnd";
     //
     // m_cancelButton
     //
     this.m_cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     resources.ApplyResources(this.m_cancelButton, "m_cancelButton");
     this.m_cancelButton.Name = "m_cancelButton";
     //
     // m_okButton
     //
     this.m_okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     resources.ApplyResources(this.m_okButton, "m_okButton");
     this.m_okButton.Name = "m_okButton";
     //
     // m_nudVal1
     //
     resources.ApplyResources(this.m_nudVal1, "m_nudVal1");
     this.m_nudVal1.Name = "m_nudVal1";
     //
     // m_nudVal2
     //
     resources.ApplyResources(this.m_nudVal2, "m_nudVal2");
     this.m_nudVal2.Name = "m_nudVal2";
     //
     // m_helpButton
     //
     resources.ApplyResources(this.m_helpButton, "m_helpButton");
     this.m_helpButton.Name = "m_helpButton";
     this.m_helpButton.UseVisualStyleBackColor = true;
     this.m_helpButton.Click += new System.EventHandler(this.m_helpButton_Click);
     //
     // SimpleIntegerMatchDlg
     //
     this.AcceptButton = this.m_okButton;
     resources.ApplyResources(this, "$this");
     this.CancelButton = this.m_cancelButton;
     this.Controls.Add(this.m_helpButton);
     this.Controls.Add(this.m_nudVal2);
     this.Controls.Add(this.m_nudVal1);
     this.Controls.Add(this.m_cancelButton);
     this.Controls.Add(this.m_okButton);
     this.Controls.Add(this.m_labelAnd);
     this.Controls.Add(this.m_comboMatchType);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SimpleIntegerMatchDlg";
     ((System.ComponentModel.ISupportInitialize)(this.m_nudVal1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.m_nudVal2)).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()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WritingSystemPropertiesDialog));
			this.tabControl = new System.Windows.Forms.TabControl();
			this.tpGeneral = new System.Windows.Forms.TabPage();
			this.lblScriptRegionVariant = new System.Windows.Forms.Label();
			this.m_FullCode = new System.Windows.Forms.Label();
			this.lblFullCode = new System.Windows.Forms.Label();
			this.lblSpellingDictionary = new System.Windows.Forms.Label();
			this.cbDictionaries = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_regionVariantControl = new SIL.FieldWorks.FwCoreDlgControls.RegionVariantControl();
			this.gbDirection = new System.Windows.Forms.GroupBox();
			this.rbLeftToRight = new System.Windows.Forms.RadioButton();
			this.rbRightToLeft = new System.Windows.Forms.RadioButton();
			this.m_ShortWsName = new System.Windows.Forms.TextBox();
			this.label5 = new System.Windows.Forms.Label();
			this.tpFonts = new System.Windows.Forms.TabPage();
			this.m_defaultFontsControl = new SIL.FieldWorks.FwCoreDlgControls.DefaultFontsControl();
			this.tpKeyboard = new System.Windows.Forms.TabPage();
			this.m_fwTextBoxTestWs = new SIL.FieldWorks.Common.Widgets.FwTextBox();
			this.m_KeyboardControl = new SIL.FieldWorks.FwCoreDlgControls.KeyboardControl();
			this.m_lblKeyboardTestInstr = new System.Windows.Forms.Label();
			this.m_linkKeymanConfiguration = new System.Windows.Forms.LinkLabel();
			this.m_linkWindowsKeyboard = new System.Windows.Forms.LinkLabel();
			this.m_lblKeyboardSetupInst = new System.Windows.Forms.Label();
			this.m_lblKeyboardInstruction = new System.Windows.Forms.Label();
			this.tpConverters = new System.Windows.Forms.TabPage();
			this.btnEncodingConverter = new System.Windows.Forms.Button();
			this.m_lblEncodingConverter = new System.Windows.Forms.Label();
			this.cbEncodingConverter = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.tpSorting = new System.Windows.Forms.TabPage();
			this.m_angleBracketButton = new System.Windows.Forms.Button();
			this.m_ampersandButton = new System.Windows.Forms.Button();
			this.btnSimilarWs = new SIL.FieldWorks.FwCoreDlgControls.LocaleMenuButton();
			this.lblSimilarWss = new System.Windows.Forms.Label();
			this.lblSortingBelowRules = new System.Windows.Forms.Label();
			this.lblSortingRule3 = new System.Windows.Forms.Label();
			this.lblSortingRule2 = new System.Windows.Forms.Label();
			this.lblSortingRule1 = new System.Windows.Forms.Label();
			this.txtIcuRules = new System.Windows.Forms.TextBox();
			this.lblSortingAboveRules = new System.Windows.Forms.Label();
			this.tpPUACharacters = new System.Windows.Forms.TabPage();
			this.m_lblCustomCharCondition3 = new System.Windows.Forms.Label();
			this.m_lblCustomCharCondition2 = new System.Windows.Forms.Label();
			this.m_lblCustomCharCondition1 = new System.Windows.Forms.Label();
			this.m_lblPunctuation = new System.Windows.Forms.Label();
			this.btnPunctuation = new System.Windows.Forms.Button();
			this.m_lblCustomCharInstructions = new System.Windows.Forms.Label();
			this.m_lblValidCharacters = new System.Windows.Forms.Label();
			this.lblCustomPUA = new System.Windows.Forms.Label();
			this.btnValidChars = new System.Windows.Forms.Button();
			this.m_btnModifyPUA = new System.Windows.Forms.Button();
			this.m_btnNewPUA = new System.Windows.Forms.Button();
			this.m_lstPUACharacters = new System.Windows.Forms.CheckedListBox();
			this.btnModifyEthnologueInfo = new System.Windows.Forms.Button();
			this.btnHelp = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.btnOk = new System.Windows.Forms.Button();
			this.helpProvider = new System.Windows.Forms.HelpProvider();
			this.m_listBoxRelatedWSs = new System.Windows.Forms.ListBox();
			this.btnAdd = new System.Windows.Forms.Button();
			this.btnCopy = new System.Windows.Forms.Button();
			this.btnRemove = new System.Windows.Forms.Button();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.m_linkToEthnologue = new System.Windows.Forms.LinkLabel();
			this.m_LanguageCode = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.m_tbLanguageName = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.m_writingSystemsFor = new System.Windows.Forms.Label();
			this.lblHiddenWss = new System.Windows.Forms.Label();
			this.m_toolTip = new System.Windows.Forms.ToolTip(this.components);
			this.tabControl.SuspendLayout();
			this.tpGeneral.SuspendLayout();
			this.gbDirection.SuspendLayout();
			this.tpFonts.SuspendLayout();
			this.tpKeyboard.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_fwTextBoxTestWs)).BeginInit();
			this.tpConverters.SuspendLayout();
			this.tpSorting.SuspendLayout();
			this.tpPUACharacters.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.SuspendLayout();
			//
			// tabControl
			//
			this.tabControl.Controls.Add(this.tpGeneral);
			this.tabControl.Controls.Add(this.tpFonts);
			this.tabControl.Controls.Add(this.tpKeyboard);
			this.tabControl.Controls.Add(this.tpConverters);
			this.tabControl.Controls.Add(this.tpSorting);
			this.tabControl.Controls.Add(this.tpPUACharacters);
			this.tabControl.HotTrack = true;
			resources.ApplyResources(this.tabControl, "tabControl");
			this.tabControl.Name = "tabControl";
			this.tabControl.SelectedIndex = 0;
			this.helpProvider.SetShowHelp(this.tabControl, ((bool)(resources.GetObject("tabControl.ShowHelp"))));
			this.tabControl.Deselecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabControl_Deselecting);
			this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
			//
			// tpGeneral
			//
			this.tpGeneral.Controls.Add(this.lblScriptRegionVariant);
			this.tpGeneral.Controls.Add(this.m_FullCode);
			this.tpGeneral.Controls.Add(this.lblFullCode);
			this.tpGeneral.Controls.Add(this.lblSpellingDictionary);
			this.tpGeneral.Controls.Add(this.cbDictionaries);
			this.tpGeneral.Controls.Add(this.m_regionVariantControl);
			this.tpGeneral.Controls.Add(this.gbDirection);
			this.tpGeneral.Controls.Add(this.m_ShortWsName);
			this.tpGeneral.Controls.Add(this.label5);
			resources.ApplyResources(this.tpGeneral, "tpGeneral");
			this.tpGeneral.Name = "tpGeneral";
			this.helpProvider.SetShowHelp(this.tpGeneral, ((bool)(resources.GetObject("tpGeneral.ShowHelp"))));
			this.tpGeneral.UseVisualStyleBackColor = true;
			//
			// lblScriptRegionVariant
			//
			resources.ApplyResources(this.lblScriptRegionVariant, "lblScriptRegionVariant");
			this.lblScriptRegionVariant.Name = "lblScriptRegionVariant";
			this.helpProvider.SetShowHelp(this.lblScriptRegionVariant, ((bool)(resources.GetObject("lblScriptRegionVariant.ShowHelp"))));
			//
			// m_FullCode
			//
			resources.ApplyResources(this.m_FullCode, "m_FullCode");
			this.m_FullCode.Name = "m_FullCode";
			//
			// lblFullCode
			//
			resources.ApplyResources(this.lblFullCode, "lblFullCode");
			this.lblFullCode.Name = "lblFullCode";
			//
			// lblSpellingDictionary
			//
			resources.ApplyResources(this.lblSpellingDictionary, "lblSpellingDictionary");
			this.lblSpellingDictionary.Name = "lblSpellingDictionary";
			//
			// cbDictionaries
			//
			this.cbDictionaries.AllowSpaceInEditBox = false;
			this.cbDictionaries.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cbDictionaries.FormattingEnabled = true;
			resources.ApplyResources(this.cbDictionaries, "cbDictionaries");
			this.cbDictionaries.Name = "cbDictionaries";
			this.cbDictionaries.Sorted = true;
			this.cbDictionaries.TextChanged += new System.EventHandler(this.cbDictionaries_TextChanged);
			//
			// m_regionVariantControl
			//
			this.m_regionVariantControl.BackColor = System.Drawing.Color.Transparent;
			this.m_regionVariantControl.LangDef = null;
			resources.ApplyResources(this.m_regionVariantControl, "m_regionVariantControl");
			this.m_regionVariantControl.Name = "m_regionVariantControl";
			this.m_regionVariantControl.PropDlg = false;
			this.helpProvider.SetShowHelp(this.m_regionVariantControl, ((bool)(resources.GetObject("m_regionVariantControl.ShowHelp"))));
			//
			// gbDirection
			//
			this.gbDirection.Controls.Add(this.rbLeftToRight);
			this.gbDirection.Controls.Add(this.rbRightToLeft);
			resources.ApplyResources(this.gbDirection, "gbDirection");
			this.gbDirection.Name = "gbDirection";
			this.helpProvider.SetShowHelp(this.gbDirection, ((bool)(resources.GetObject("gbDirection.ShowHelp"))));
			this.gbDirection.TabStop = false;
			//
			// rbLeftToRight
			//
			this.helpProvider.SetHelpString(this.rbLeftToRight, resources.GetString("rbLeftToRight.HelpString"));
			resources.ApplyResources(this.rbLeftToRight, "rbLeftToRight");
			this.rbLeftToRight.Name = "rbLeftToRight";
			this.helpProvider.SetShowHelp(this.rbLeftToRight, ((bool)(resources.GetObject("rbLeftToRight.ShowHelp"))));
			this.rbLeftToRight.TabStop = true;
			this.rbLeftToRight.CheckedChanged += new System.EventHandler(this.rbLeftToRight_CheckedChanged);
			//
			// rbRightToLeft
			//
			this.helpProvider.SetHelpString(this.rbRightToLeft, resources.GetString("rbRightToLeft.HelpString"));
			resources.ApplyResources(this.rbRightToLeft, "rbRightToLeft");
			this.rbRightToLeft.Name = "rbRightToLeft";
			this.helpProvider.SetShowHelp(this.rbRightToLeft, ((bool)(resources.GetObject("rbRightToLeft.ShowHelp"))));
			this.rbRightToLeft.CheckedChanged += new System.EventHandler(this.rbLeftToRight_CheckedChanged);
			//
			// m_ShortWsName
			//
			this.helpProvider.SetHelpString(this.m_ShortWsName, resources.GetString("m_ShortWsName.HelpString"));
			resources.ApplyResources(this.m_ShortWsName, "m_ShortWsName");
			this.m_ShortWsName.Name = "m_ShortWsName";
			this.helpProvider.SetShowHelp(this.m_ShortWsName, ((bool)(resources.GetObject("m_ShortWsName.ShowHelp"))));
			this.m_ShortWsName.TextChanged += new System.EventHandler(this.m_ShortWsName_TextChanged);
			//
			// label5
			//
			resources.ApplyResources(this.label5, "label5");
			this.label5.Name = "label5";
			this.helpProvider.SetShowHelp(this.label5, ((bool)(resources.GetObject("label5.ShowHelp"))));
			//
			// tpFonts
			//
			this.tpFonts.Controls.Add(this.m_defaultFontsControl);
			resources.ApplyResources(this.tpFonts, "tpFonts");
			this.tpFonts.Name = "tpFonts";
			this.helpProvider.SetShowHelp(this.tpFonts, ((bool)(resources.GetObject("tpFonts.ShowHelp"))));
			this.tpFonts.UseVisualStyleBackColor = true;
			//
			// m_defaultFontsControl
			//
			resources.ApplyResources(this.m_defaultFontsControl, "m_defaultFontsControl");
			this.m_defaultFontsControl.DefaultHeadingFont = "";
			this.m_defaultFontsControl.DefaultNormalFont = "";
			this.m_defaultFontsControl.DefaultPublicationFont = "";
			this.helpProvider.SetHelpString(this.m_defaultFontsControl, resources.GetString("m_defaultFontsControl.HelpString"));
			this.m_defaultFontsControl.LangDef = null;
			this.m_defaultFontsControl.Name = "m_defaultFontsControl";
			this.helpProvider.SetShowHelp(this.m_defaultFontsControl, ((bool)(resources.GetObject("m_defaultFontsControl.ShowHelp"))));
			//
			// tpKeyboard
			//
			this.tpKeyboard.Controls.Add(this.m_fwTextBoxTestWs);
			this.tpKeyboard.Controls.Add(this.m_KeyboardControl);
			this.tpKeyboard.Controls.Add(this.m_lblKeyboardTestInstr);
			this.tpKeyboard.Controls.Add(this.m_linkKeymanConfiguration);
			this.tpKeyboard.Controls.Add(this.m_linkWindowsKeyboard);
			this.tpKeyboard.Controls.Add(this.m_lblKeyboardSetupInst);
			this.tpKeyboard.Controls.Add(this.m_lblKeyboardInstruction);
			resources.ApplyResources(this.tpKeyboard, "tpKeyboard");
			this.tpKeyboard.Name = "tpKeyboard";
			this.helpProvider.SetShowHelp(this.tpKeyboard, ((bool)(resources.GetObject("tpKeyboard.ShowHelp"))));
			this.tpKeyboard.UseVisualStyleBackColor = true;
			//
			// m_fwTextBoxTestWs
			//
			this.m_fwTextBoxTestWs.AdjustStringHeight = true;
			this.m_fwTextBoxTestWs.AllowMultipleLines = true;
			this.m_fwTextBoxTestWs.BackColor = System.Drawing.SystemColors.Window;
			this.m_fwTextBoxTestWs.controlID = null;
			resources.ApplyResources(this.m_fwTextBoxTestWs, "m_fwTextBoxTestWs");
			this.m_fwTextBoxTestWs.HasBorder = true;
			this.m_fwTextBoxTestWs.Name = "m_fwTextBoxTestWs";
			this.m_fwTextBoxTestWs.SelectionLength = 0;
			this.m_fwTextBoxTestWs.SelectionStart = 0;
			this.m_fwTextBoxTestWs.Enter += new System.EventHandler(this.m_fwTextBoxTestWs_Enter);
			//
			// m_KeyboardControl
			//
			this.m_KeyboardControl.LangDef = null;
			resources.ApplyResources(this.m_KeyboardControl, "m_KeyboardControl");
			this.m_KeyboardControl.Name = "m_KeyboardControl";
			this.helpProvider.SetShowHelp(this.m_KeyboardControl, ((bool)(resources.GetObject("m_KeyboardControl.ShowHelp"))));
			this.m_KeyboardControl.Enter += new System.EventHandler(this.OnGetFocus);
			//
			// m_lblKeyboardTestInstr
			//
			resources.ApplyResources(this.m_lblKeyboardTestInstr, "m_lblKeyboardTestInstr");
			this.m_lblKeyboardTestInstr.Name = "m_lblKeyboardTestInstr";
			this.helpProvider.SetShowHelp(this.m_lblKeyboardTestInstr, ((bool)(resources.GetObject("m_lblKeyboardTestInstr.ShowHelp"))));
			//
			// m_linkKeymanConfiguration
			//
			resources.ApplyResources(this.m_linkKeymanConfiguration, "m_linkKeymanConfiguration");
			this.m_linkKeymanConfiguration.Name = "m_linkKeymanConfiguration";
			this.helpProvider.SetShowHelp(this.m_linkKeymanConfiguration, ((bool)(resources.GetObject("m_linkKeymanConfiguration.ShowHelp"))));
			this.m_linkKeymanConfiguration.TabStop = true;
			this.m_linkKeymanConfiguration.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.m_linkKeymanConfiguration_LinkClicked);
			//
			// m_linkWindowsKeyboard
			//
			resources.ApplyResources(this.m_linkWindowsKeyboard, "m_linkWindowsKeyboard");
			this.m_linkWindowsKeyboard.Name = "m_linkWindowsKeyboard";
			this.helpProvider.SetShowHelp(this.m_linkWindowsKeyboard, ((bool)(resources.GetObject("m_linkWindowsKeyboard.ShowHelp"))));
			this.m_linkWindowsKeyboard.TabStop = true;
			this.m_linkWindowsKeyboard.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.m_linkWindowsKeyboard_LinkClicked);
			//
			// m_lblKeyboardSetupInst
			//
			resources.ApplyResources(this.m_lblKeyboardSetupInst, "m_lblKeyboardSetupInst");
			this.m_lblKeyboardSetupInst.Name = "m_lblKeyboardSetupInst";
			this.helpProvider.SetShowHelp(this.m_lblKeyboardSetupInst, ((bool)(resources.GetObject("m_lblKeyboardSetupInst.ShowHelp"))));
			//
			// m_lblKeyboardInstruction
			//
			resources.ApplyResources(this.m_lblKeyboardInstruction, "m_lblKeyboardInstruction");
			this.m_lblKeyboardInstruction.Name = "m_lblKeyboardInstruction";
			this.helpProvider.SetShowHelp(this.m_lblKeyboardInstruction, ((bool)(resources.GetObject("m_lblKeyboardInstruction.ShowHelp"))));
			//
			// tpConverters
			//
			this.tpConverters.Controls.Add(this.btnEncodingConverter);
			this.tpConverters.Controls.Add(this.m_lblEncodingConverter);
			this.tpConverters.Controls.Add(this.cbEncodingConverter);
			resources.ApplyResources(this.tpConverters, "tpConverters");
			this.tpConverters.Name = "tpConverters";
			this.helpProvider.SetShowHelp(this.tpConverters, ((bool)(resources.GetObject("tpConverters.ShowHelp"))));
			this.tpConverters.UseVisualStyleBackColor = true;
			//
			// btnEncodingConverter
			//
			this.helpProvider.SetHelpString(this.btnEncodingConverter, resources.GetString("btnEncodingConverter.HelpString"));
			resources.ApplyResources(this.btnEncodingConverter, "btnEncodingConverter");
			this.btnEncodingConverter.Name = "btnEncodingConverter";
			this.helpProvider.SetShowHelp(this.btnEncodingConverter, ((bool)(resources.GetObject("btnEncodingConverter.ShowHelp"))));
			this.btnEncodingConverter.Click += new System.EventHandler(this.btnEncodingConverter_Click);
			//
			// m_lblEncodingConverter
			//
			resources.ApplyResources(this.m_lblEncodingConverter, "m_lblEncodingConverter");
			this.m_lblEncodingConverter.Name = "m_lblEncodingConverter";
			this.helpProvider.SetShowHelp(this.m_lblEncodingConverter, ((bool)(resources.GetObject("m_lblEncodingConverter.ShowHelp"))));
			//
			// cbEncodingConverter
			//
			this.cbEncodingConverter.AllowSpaceInEditBox = false;
			this.cbEncodingConverter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider.SetHelpString(this.cbEncodingConverter, resources.GetString("cbEncodingConverter.HelpString"));
			resources.ApplyResources(this.cbEncodingConverter, "cbEncodingConverter");
			this.cbEncodingConverter.Name = "cbEncodingConverter";
			this.helpProvider.SetShowHelp(this.cbEncodingConverter, ((bool)(resources.GetObject("cbEncodingConverter.ShowHelp"))));
			this.cbEncodingConverter.Sorted = true;
			//
			// tpSorting
			//
			this.tpSorting.BackColor = System.Drawing.Color.Transparent;
			this.tpSorting.Controls.Add(this.m_angleBracketButton);
			this.tpSorting.Controls.Add(this.m_ampersandButton);
			this.tpSorting.Controls.Add(this.btnSimilarWs);
			this.tpSorting.Controls.Add(this.lblSimilarWss);
			this.tpSorting.Controls.Add(this.lblSortingBelowRules);
			this.tpSorting.Controls.Add(this.lblSortingRule3);
			this.tpSorting.Controls.Add(this.lblSortingRule2);
			this.tpSorting.Controls.Add(this.lblSortingRule1);
			this.tpSorting.Controls.Add(this.txtIcuRules);
			this.tpSorting.Controls.Add(this.lblSortingAboveRules);
			resources.ApplyResources(this.tpSorting, "tpSorting");
			this.tpSorting.Name = "tpSorting";
			this.helpProvider.SetShowHelp(this.tpSorting, ((bool)(resources.GetObject("tpSorting.ShowHelp"))));
			this.tpSorting.UseVisualStyleBackColor = true;
			//
			// m_angleBracketButton
			//
			resources.ApplyResources(this.m_angleBracketButton, "m_angleBracketButton");
			this.m_angleBracketButton.Name = "m_angleBracketButton";
			this.helpProvider.SetShowHelp(this.m_angleBracketButton, ((bool)(resources.GetObject("m_angleBracketButton.ShowHelp"))));
			this.m_angleBracketButton.UseVisualStyleBackColor = true;
			this.m_angleBracketButton.Click += new System.EventHandler(this.m_angleBracketButton_Click);
			//
			// m_ampersandButton
			//
			resources.ApplyResources(this.m_ampersandButton, "m_ampersandButton");
			this.m_ampersandButton.Name = "m_ampersandButton";
			this.m_ampersandButton.UseVisualStyleBackColor = true;
			this.m_ampersandButton.Click += new System.EventHandler(this.m_ampersandButton_Click);
			//
			// btnSimilarWs
			//
			this.btnSimilarWs.DisplayLocaleId = null;
			resources.ApplyResources(this.btnSimilarWs, "btnSimilarWs");
			this.btnSimilarWs.Name = "btnSimilarWs";
			this.btnSimilarWs.SelectedLocaleId = null;
			this.helpProvider.SetShowHelp(this.btnSimilarWs, ((bool)(resources.GetObject("btnSimilarWs.ShowHelp"))));
			this.btnSimilarWs.UseVisualStyleBackColor = true;
			this.btnSimilarWs.LocaleSelected += new System.EventHandler(this.btnSimilarWs_LocaleSelected);
			//
			// lblSimilarWss
			//
			resources.ApplyResources(this.lblSimilarWss, "lblSimilarWss");
			this.lblSimilarWss.Name = "lblSimilarWss";
			this.helpProvider.SetShowHelp(this.lblSimilarWss, ((bool)(resources.GetObject("lblSimilarWss.ShowHelp"))));
			//
			// lblSortingBelowRules
			//
			resources.ApplyResources(this.lblSortingBelowRules, "lblSortingBelowRules");
			this.lblSortingBelowRules.Name = "lblSortingBelowRules";
			this.helpProvider.SetShowHelp(this.lblSortingBelowRules, ((bool)(resources.GetObject("lblSortingBelowRules.ShowHelp"))));
			//
			// lblSortingRule3
			//
			resources.ApplyResources(this.lblSortingRule3, "lblSortingRule3");
			this.lblSortingRule3.Name = "lblSortingRule3";
			this.helpProvider.SetShowHelp(this.lblSortingRule3, ((bool)(resources.GetObject("lblSortingRule3.ShowHelp"))));
			this.lblSortingRule3.UseMnemonic = false;
			//
			// lblSortingRule2
			//
			resources.ApplyResources(this.lblSortingRule2, "lblSortingRule2");
			this.lblSortingRule2.Name = "lblSortingRule2";
			this.helpProvider.SetShowHelp(this.lblSortingRule2, ((bool)(resources.GetObject("lblSortingRule2.ShowHelp"))));
			this.lblSortingRule2.UseMnemonic = false;
			//
			// lblSortingRule1
			//
			resources.ApplyResources(this.lblSortingRule1, "lblSortingRule1");
			this.lblSortingRule1.Name = "lblSortingRule1";
			this.helpProvider.SetShowHelp(this.lblSortingRule1, ((bool)(resources.GetObject("lblSortingRule1.ShowHelp"))));
			this.lblSortingRule1.UseMnemonic = false;
			//
			// txtIcuRules
			//
			this.txtIcuRules.AcceptsReturn = true;
			resources.ApplyResources(this.txtIcuRules, "txtIcuRules");
			this.txtIcuRules.Name = "txtIcuRules";
			this.helpProvider.SetShowHelp(this.txtIcuRules, ((bool)(resources.GetObject("txtIcuRules.ShowHelp"))));
			//
			// lblSortingAboveRules
			//
			resources.ApplyResources(this.lblSortingAboveRules, "lblSortingAboveRules");
			this.lblSortingAboveRules.Name = "lblSortingAboveRules";
			this.helpProvider.SetShowHelp(this.lblSortingAboveRules, ((bool)(resources.GetObject("lblSortingAboveRules.ShowHelp"))));
			//
			// tpPUACharacters
			//
			this.tpPUACharacters.BackColor = System.Drawing.Color.Transparent;
			this.tpPUACharacters.Controls.Add(this.m_lblCustomCharCondition3);
			this.tpPUACharacters.Controls.Add(this.m_lblCustomCharCondition2);
			this.tpPUACharacters.Controls.Add(this.m_lblCustomCharCondition1);
			this.tpPUACharacters.Controls.Add(this.m_lblPunctuation);
			this.tpPUACharacters.Controls.Add(this.btnPunctuation);
			this.tpPUACharacters.Controls.Add(this.m_lblCustomCharInstructions);
			this.tpPUACharacters.Controls.Add(this.m_lblValidCharacters);
			this.tpPUACharacters.Controls.Add(this.lblCustomPUA);
			this.tpPUACharacters.Controls.Add(this.btnValidChars);
			this.tpPUACharacters.Controls.Add(this.m_btnModifyPUA);
			this.tpPUACharacters.Controls.Add(this.m_btnNewPUA);
			this.tpPUACharacters.Controls.Add(this.m_lstPUACharacters);
			resources.ApplyResources(this.tpPUACharacters, "tpPUACharacters");
			this.tpPUACharacters.Name = "tpPUACharacters";
			this.helpProvider.SetShowHelp(this.tpPUACharacters, ((bool)(resources.GetObject("tpPUACharacters.ShowHelp"))));
			this.tpPUACharacters.UseVisualStyleBackColor = true;
			//
			// m_lblCustomCharCondition3
			//
			resources.ApplyResources(this.m_lblCustomCharCondition3, "m_lblCustomCharCondition3");
			this.m_lblCustomCharCondition3.Name = "m_lblCustomCharCondition3";
			this.helpProvider.SetShowHelp(this.m_lblCustomCharCondition3, ((bool)(resources.GetObject("m_lblCustomCharCondition3.ShowHelp"))));
			//
			// m_lblCustomCharCondition2
			//
			resources.ApplyResources(this.m_lblCustomCharCondition2, "m_lblCustomCharCondition2");
			this.m_lblCustomCharCondition2.Name = "m_lblCustomCharCondition2";
			this.helpProvider.SetShowHelp(this.m_lblCustomCharCondition2, ((bool)(resources.GetObject("m_lblCustomCharCondition2.ShowHelp"))));
			//
			// m_lblCustomCharCondition1
			//
			resources.ApplyResources(this.m_lblCustomCharCondition1, "m_lblCustomCharCondition1");
			this.m_lblCustomCharCondition1.Name = "m_lblCustomCharCondition1";
			this.helpProvider.SetShowHelp(this.m_lblCustomCharCondition1, ((bool)(resources.GetObject("m_lblCustomCharCondition1.ShowHelp"))));
			//
			// m_lblPunctuation
			//
			resources.ApplyResources(this.m_lblPunctuation, "m_lblPunctuation");
			this.m_lblPunctuation.Name = "m_lblPunctuation";
			this.helpProvider.SetShowHelp(this.m_lblPunctuation, ((bool)(resources.GetObject("m_lblPunctuation.ShowHelp"))));
			//
			// btnPunctuation
			//
			this.helpProvider.SetHelpString(this.btnPunctuation, resources.GetString("btnPunctuation.HelpString"));
			resources.ApplyResources(this.btnPunctuation, "btnPunctuation");
			this.btnPunctuation.Name = "btnPunctuation";
			this.helpProvider.SetShowHelp(this.btnPunctuation, ((bool)(resources.GetObject("btnPunctuation.ShowHelp"))));
			this.btnPunctuation.Click += new System.EventHandler(this.btnPunctuation_Click);
			//
			// m_lblCustomCharInstructions
			//
			resources.ApplyResources(this.m_lblCustomCharInstructions, "m_lblCustomCharInstructions");
			this.m_lblCustomCharInstructions.Name = "m_lblCustomCharInstructions";
			//
			// m_lblValidCharacters
			//
			resources.ApplyResources(this.m_lblValidCharacters, "m_lblValidCharacters");
			this.m_lblValidCharacters.Name = "m_lblValidCharacters";
			//
			// lblCustomPUA
			//
			resources.ApplyResources(this.lblCustomPUA, "lblCustomPUA");
			this.lblCustomPUA.Name = "lblCustomPUA";
			//
			// btnValidChars
			//
			this.helpProvider.SetHelpString(this.btnValidChars, resources.GetString("btnValidChars.HelpString"));
			resources.ApplyResources(this.btnValidChars, "btnValidChars");
			this.btnValidChars.Name = "btnValidChars";
			this.helpProvider.SetShowHelp(this.btnValidChars, ((bool)(resources.GetObject("btnValidChars.ShowHelp"))));
			this.btnValidChars.Click += new System.EventHandler(this.btnValidChars_Click);
			//
			// m_btnModifyPUA
			//
			this.helpProvider.SetHelpNavigator(this.m_btnModifyPUA, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("m_btnModifyPUA.HelpNavigator"))));
			resources.ApplyResources(this.m_btnModifyPUA, "m_btnModifyPUA");
			this.m_btnModifyPUA.Name = "m_btnModifyPUA";
			this.helpProvider.SetShowHelp(this.m_btnModifyPUA, ((bool)(resources.GetObject("m_btnModifyPUA.ShowHelp"))));
			this.m_toolTip.SetToolTip(this.m_btnModifyPUA, resources.GetString("m_btnModifyPUA.ToolTip"));
			this.m_btnModifyPUA.Click += new System.EventHandler(this.m_btnModifyPUA_Click);
			//
			// m_btnNewPUA
			//
			this.helpProvider.SetHelpNavigator(this.m_btnNewPUA, ((System.Windows.Forms.HelpNavigator)(resources.GetObject("m_btnNewPUA.HelpNavigator"))));
			resources.ApplyResources(this.m_btnNewPUA, "m_btnNewPUA");
			this.m_btnNewPUA.Name = "m_btnNewPUA";
			this.helpProvider.SetShowHelp(this.m_btnNewPUA, ((bool)(resources.GetObject("m_btnNewPUA.ShowHelp"))));
			this.m_toolTip.SetToolTip(this.m_btnNewPUA, resources.GetString("m_btnNewPUA.ToolTip"));
			this.m_btnNewPUA.Click += new System.EventHandler(this.m_btnNewPUA_Click);
			//
			// m_lstPUACharacters
			//
			resources.ApplyResources(this.m_lstPUACharacters, "m_lstPUACharacters");
			this.m_lstPUACharacters.Name = "m_lstPUACharacters";
			this.helpProvider.SetShowHelp(this.m_lstPUACharacters, ((bool)(resources.GetObject("m_lstPUACharacters.ShowHelp"))));
			this.m_lstPUACharacters.Sorted = true;
			this.m_lstPUACharacters.SelectedIndexChanged += new System.EventHandler(this.m_lstPUACharacters_SelectedIndexChanged);
			this.m_lstPUACharacters.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.m_lstPUACharacters_ItemCheck);
			//
			// btnModifyEthnologueInfo
			//
			this.helpProvider.SetHelpString(this.btnModifyEthnologueInfo, resources.GetString("btnModifyEthnologueInfo.HelpString"));
			resources.ApplyResources(this.btnModifyEthnologueInfo, "btnModifyEthnologueInfo");
			this.btnModifyEthnologueInfo.Name = "btnModifyEthnologueInfo";
			this.helpProvider.SetShowHelp(this.btnModifyEthnologueInfo, ((bool)(resources.GetObject("btnModifyEthnologueInfo.ShowHelp"))));
			this.btnModifyEthnologueInfo.Click += new System.EventHandler(this.btnModifyEthnologueInfo_Click);
			//
			// btnHelp
			//
			resources.ApplyResources(this.btnHelp, "btnHelp");
			this.helpProvider.SetHelpString(this.btnHelp, resources.GetString("btnHelp.HelpString"));
			this.btnHelp.Name = "btnHelp";
			this.helpProvider.SetShowHelp(this.btnHelp, ((bool)(resources.GetObject("btnHelp.ShowHelp"))));
			this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
			//
			// btnCancel
			//
			resources.ApplyResources(this.btnCancel, "btnCancel");
			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.helpProvider.SetHelpString(this.btnCancel, resources.GetString("btnCancel.HelpString"));
			this.btnCancel.Name = "btnCancel";
			this.helpProvider.SetShowHelp(this.btnCancel, ((bool)(resources.GetObject("btnCancel.ShowHelp"))));
			this.btnCancel.Click += new System.EventHandler(this.OnCancel);
			//
			// btnOk
			//
			resources.ApplyResources(this.btnOk, "btnOk");
			this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.helpProvider.SetHelpString(this.btnOk, resources.GetString("btnOk.HelpString"));
			this.btnOk.Name = "btnOk";
			this.helpProvider.SetShowHelp(this.btnOk, ((bool)(resources.GetObject("btnOk.ShowHelp"))));
			this.btnOk.Click += new System.EventHandler(this.OnOk);
			//
			// m_listBoxRelatedWSs
			//
			this.m_listBoxRelatedWSs.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
			this.m_listBoxRelatedWSs.FormattingEnabled = true;
			resources.ApplyResources(this.m_listBoxRelatedWSs, "m_listBoxRelatedWSs");
			this.m_listBoxRelatedWSs.Name = "m_listBoxRelatedWSs";
			this.helpProvider.SetShowHelp(this.m_listBoxRelatedWSs, ((bool)(resources.GetObject("m_listBoxRelatedWSs.ShowHelp"))));
			this.m_listBoxRelatedWSs.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.m_listBoxRelatedWSs_DrawItem);
			this.m_listBoxRelatedWSs.SelectedIndexChanged += new System.EventHandler(this.m_listBoxRelatedWSs_UserSelectionChanged);
			//
			// btnAdd
			//
			resources.ApplyResources(this.btnAdd, "btnAdd");
			this.btnAdd.Name = "btnAdd";
			this.helpProvider.SetShowHelp(this.btnAdd, ((bool)(resources.GetObject("btnAdd.ShowHelp"))));
			this.btnAdd.UseVisualStyleBackColor = true;
			this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
			//
			// btnCopy
			//
			resources.ApplyResources(this.btnCopy, "btnCopy");
			this.btnCopy.Name = "btnCopy";
			this.helpProvider.SetShowHelp(this.btnCopy, ((bool)(resources.GetObject("btnCopy.ShowHelp"))));
			this.btnCopy.UseVisualStyleBackColor = true;
			this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
			//
			// btnRemove
			//
			resources.ApplyResources(this.btnRemove, "btnRemove");
			this.btnRemove.Name = "btnRemove";
			this.helpProvider.SetShowHelp(this.btnRemove, ((bool)(resources.GetObject("btnRemove.ShowHelp"))));
			this.btnRemove.UseVisualStyleBackColor = true;
			this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
			//
			// groupBox2
			//
			this.groupBox2.Controls.Add(this.btnModifyEthnologueInfo);
			this.groupBox2.Controls.Add(this.m_linkToEthnologue);
			this.groupBox2.Controls.Add(this.m_LanguageCode);
			this.groupBox2.Controls.Add(this.label3);
			this.groupBox2.Controls.Add(this.m_tbLanguageName);
			this.groupBox2.Controls.Add(this.label1);
			resources.ApplyResources(this.groupBox2, "groupBox2");
			this.groupBox2.Name = "groupBox2";
			this.helpProvider.SetShowHelp(this.groupBox2, ((bool)(resources.GetObject("groupBox2.ShowHelp"))));
			this.groupBox2.TabStop = false;
			//
			// m_linkToEthnologue
			//
			resources.ApplyResources(this.m_linkToEthnologue, "m_linkToEthnologue");
			this.m_linkToEthnologue.Name = "m_linkToEthnologue";
			this.helpProvider.SetShowHelp(this.m_linkToEthnologue, ((bool)(resources.GetObject("m_linkToEthnologue.ShowHelp"))));
			this.m_linkToEthnologue.TabStop = true;
			this.m_linkToEthnologue.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkToEthnologue_LinkClicked);
			//
			// m_LanguageCode
			//
			resources.ApplyResources(this.m_LanguageCode, "m_LanguageCode");
			this.m_LanguageCode.Name = "m_LanguageCode";
			this.helpProvider.SetShowHelp(this.m_LanguageCode, ((bool)(resources.GetObject("m_LanguageCode.ShowHelp"))));
			//
			// label3
			//
			resources.ApplyResources(this.label3, "label3");
			this.label3.Name = "label3";
			this.helpProvider.SetShowHelp(this.label3, ((bool)(resources.GetObject("label3.ShowHelp"))));
			//
			// m_tbLanguageName
			//
			resources.ApplyResources(this.m_tbLanguageName, "m_tbLanguageName");
			this.m_tbLanguageName.Name = "m_tbLanguageName";
			this.helpProvider.SetShowHelp(this.m_tbLanguageName, ((bool)(resources.GetObject("m_tbLanguageName.ShowHelp"))));
			this.m_tbLanguageName.TextChanged += new System.EventHandler(this.m_tbLanguageName_TextChanged);
			//
			// label1
			//
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			this.helpProvider.SetShowHelp(this.label1, ((bool)(resources.GetObject("label1.ShowHelp"))));
			//
			// m_writingSystemsFor
			//
			resources.ApplyResources(this.m_writingSystemsFor, "m_writingSystemsFor");
			this.m_writingSystemsFor.Name = "m_writingSystemsFor";
			this.helpProvider.SetShowHelp(this.m_writingSystemsFor, ((bool)(resources.GetObject("m_writingSystemsFor.ShowHelp"))));
			//
			// lblHiddenWss
			//
			resources.ApplyResources(this.lblHiddenWss, "lblHiddenWss");
			this.lblHiddenWss.Name = "lblHiddenWss";
			this.helpProvider.SetShowHelp(this.lblHiddenWss, ((bool)(resources.GetObject("lblHiddenWss.ShowHelp"))));
			//
			// WritingSystemPropertiesDialog
			//
			this.AcceptButton = this.btnOk;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.btnCancel;
			this.Controls.Add(this.lblHiddenWss);
			this.Controls.Add(this.m_writingSystemsFor);
			this.Controls.Add(this.groupBox2);
			this.Controls.Add(this.btnRemove);
			this.Controls.Add(this.btnCopy);
			this.Controls.Add(this.btnAdd);
			this.Controls.Add(this.m_listBoxRelatedWSs);
			this.Controls.Add(this.btnOk);
			this.Controls.Add(this.btnCancel);
			this.Controls.Add(this.btnHelp);
			this.Controls.Add(this.tabControl);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "WritingSystemPropertiesDialog";
			this.helpProvider.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			this.ShowIcon = false;
			this.ShowInTaskbar = false;
			this.Activated += new System.EventHandler(this.OnGetFocus);
			this.tabControl.ResumeLayout(false);
			this.tpGeneral.ResumeLayout(false);
			this.tpGeneral.PerformLayout();
			this.gbDirection.ResumeLayout(false);
			this.tpFonts.ResumeLayout(false);
			this.tpKeyboard.ResumeLayout(false);
			this.tpKeyboard.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_fwTextBoxTestWs)).EndInit();
			this.tpConverters.ResumeLayout(false);
			this.tpConverters.PerformLayout();
			this.tpSorting.ResumeLayout(false);
			this.tpSorting.PerformLayout();
			this.tpPUACharacters.ResumeLayout(false);
			this.tpPUACharacters.PerformLayout();
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 8
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(MGADialog));
			System.Windows.Forms.TableLayoutPanel panelGlossComponents;
			System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
			System.Windows.Forms.Panel panel1;
			System.Windows.Forms.Panel panelInsertRemove;
			System.Windows.Forms.TableLayoutPanel panelSelectedGloss;
			System.Windows.Forms.TableLayoutPanel tableLayoutPanelSelectedGloss;
			System.Windows.Forms.Panel panel;
			System.Windows.Forms.Panel panel2;
			System.Windows.Forms.Panel panelTop;
			System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
			this.splitContainerVertical = new System.Windows.Forms.SplitContainer();
			this.groupBoxGlossComponents = new System.Windows.Forms.GroupBox();
			this.comboGlossListItem = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.labelGlossListItem = new System.Windows.Forms.Label();
			this.checkBoxShowUsed = new System.Windows.Forms.CheckBox();
			this.buttonInfo = new System.Windows.Forms.Button();
			this.buttonInsert = new System.Windows.Forms.Button();
			this.buttonRemove = new System.Windows.Forms.Button();
			this.groupBoxSelectedGloss = new System.Windows.Forms.GroupBox();
			this.buttonMoveUp = new System.Windows.Forms.Button();
			this.buttonMoveDown = new System.Windows.Forms.Button();
			this.buttonModify = new System.Windows.Forms.Button();
			this.buttonHelp = new System.Windows.Forms.Button();
			this.buttonAcceptGloss = new System.Windows.Forms.Button();
			this.buttonCancel = new System.Windows.Forms.Button();
			this.labelConstructedGlossForPrompt = new System.Windows.Forms.Label();
			this.labelAllomorph = new System.Windows.Forms.Label();
			this.textBoxResult = new System.Windows.Forms.TextBox();
			this.splitContainerHorizontal = new System.Windows.Forms.SplitContainer();
			this.treeViewGlossListItem = new SIL.FieldWorks.LexText.Controls.MGA.GlossListTreeView();
			this.glossListBoxGloss = new SIL.FieldWorks.LexText.Controls.MGA.GlossListBox();
			panelGlossComponents = new System.Windows.Forms.TableLayoutPanel();
			tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			panel1 = new System.Windows.Forms.Panel();
			panelInsertRemove = new System.Windows.Forms.Panel();
			panelSelectedGloss = new System.Windows.Forms.TableLayoutPanel();
			tableLayoutPanelSelectedGloss = new System.Windows.Forms.TableLayoutPanel();
			panel = new System.Windows.Forms.Panel();
			panel2 = new System.Windows.Forms.Panel();
			panelTop = new System.Windows.Forms.Panel();
			tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
			this.splitContainerVertical.Panel1.SuspendLayout();
			this.splitContainerVertical.Panel2.SuspendLayout();
			this.splitContainerVertical.SuspendLayout();
			panelGlossComponents.SuspendLayout();
			this.groupBoxGlossComponents.SuspendLayout();
			tableLayoutPanel1.SuspendLayout();
			panel1.SuspendLayout();
			panelInsertRemove.SuspendLayout();
			panelSelectedGloss.SuspendLayout();
			this.groupBoxSelectedGloss.SuspendLayout();
			tableLayoutPanelSelectedGloss.SuspendLayout();
			panel.SuspendLayout();
			panel2.SuspendLayout();
			panelTop.SuspendLayout();
			tableLayoutPanel2.SuspendLayout();
			this.splitContainerHorizontal.Panel1.SuspendLayout();
			this.splitContainerHorizontal.Panel2.SuspendLayout();
			this.splitContainerHorizontal.SuspendLayout();
			this.SuspendLayout();
			//
			// splitContainerVertical
			//
			resources.ApplyResources(this.splitContainerVertical, "splitContainerVertical");
			this.splitContainerVertical.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
			this.splitContainerVertical.Name = "splitContainerVertical";
			//
			// splitContainerVertical.Panel1
			//
			this.splitContainerVertical.Panel1.Controls.Add(panelGlossComponents);
			this.splitContainerVertical.Panel1.Controls.Add(panelInsertRemove);
			//
			// splitContainerVertical.Panel2
			//
			this.splitContainerVertical.Panel2.Controls.Add(panelSelectedGloss);
			resources.ApplyResources(this.splitContainerVertical.Panel2, "splitContainerVertical.Panel2");
			//
			// panelGlossComponents
			//
			resources.ApplyResources(panelGlossComponents, "panelGlossComponents");
			panelGlossComponents.Controls.Add(this.groupBoxGlossComponents, 0, 0);
			panelGlossComponents.Controls.Add(this.buttonInfo, 0, 1);
			panelGlossComponents.Name = "panelGlossComponents";
			//
			// groupBoxGlossComponents
			//
			this.groupBoxGlossComponents.Controls.Add(tableLayoutPanel1);
			resources.ApplyResources(this.groupBoxGlossComponents, "groupBoxGlossComponents");
			this.groupBoxGlossComponents.Name = "groupBoxGlossComponents";
			this.groupBoxGlossComponents.TabStop = false;
			//
			// tableLayoutPanel1
			//
			resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
			tableLayoutPanel1.Controls.Add(panel1, 0, 0);
			tableLayoutPanel1.Controls.Add(this.checkBoxShowUsed, 0, 2);
			tableLayoutPanel1.Controls.Add(this.treeViewGlossListItem, 0, 1);
			tableLayoutPanel1.Name = "tableLayoutPanel1";
			//
			// panel1
			//
			panel1.Controls.Add(this.comboGlossListItem);
			panel1.Controls.Add(this.labelGlossListItem);
			resources.ApplyResources(panel1, "panel1");
			panel1.Name = "panel1";
			//
			// comboGlossListItem
			//
			resources.ApplyResources(this.comboGlossListItem, "comboGlossListItem");
			this.comboGlossListItem.Name = "comboGlossListItem";
			//
			// labelGlossListItem
			//
			resources.ApplyResources(this.labelGlossListItem, "labelGlossListItem");
			this.labelGlossListItem.Name = "labelGlossListItem";
			//
			// checkBoxShowUsed
			//
			resources.ApplyResources(this.checkBoxShowUsed, "checkBoxShowUsed");
			this.checkBoxShowUsed.Name = "checkBoxShowUsed";
			//
			// buttonInfo
			//
			resources.ApplyResources(this.buttonInfo, "buttonInfo");
			this.buttonInfo.Name = "buttonInfo";
			this.buttonInfo.Click += new System.EventHandler(this.OnInfoButtonClick);
			//
			// panelInsertRemove
			//
			panelInsertRemove.Controls.Add(this.buttonInsert);
			panelInsertRemove.Controls.Add(this.buttonRemove);
			resources.ApplyResources(panelInsertRemove, "panelInsertRemove");
			panelInsertRemove.Name = "panelInsertRemove";
			panelInsertRemove.TabStop = true;
			//
			// buttonInsert
			//
			resources.ApplyResources(this.buttonInsert, "buttonInsert");
			this.buttonInsert.Name = "buttonInsert";
			this.buttonInsert.Click += new System.EventHandler(this.OnInsertButtonClick);
			//
			// buttonRemove
			//
			resources.ApplyResources(this.buttonRemove, "buttonRemove");
			this.buttonRemove.Name = "buttonRemove";
			this.buttonRemove.Click += new System.EventHandler(this.OnRemoveButtonClick);
			//
			// panelSelectedGloss
			//
			resources.ApplyResources(panelSelectedGloss, "panelSelectedGloss");
			panelSelectedGloss.Controls.Add(this.groupBoxSelectedGloss, 0, 0);
			panelSelectedGloss.Controls.Add(panel2, 0, 1);
			panelSelectedGloss.Name = "panelSelectedGloss";
			//
			// groupBoxSelectedGloss
			//
			this.groupBoxSelectedGloss.Controls.Add(tableLayoutPanelSelectedGloss);
			resources.ApplyResources(this.groupBoxSelectedGloss, "groupBoxSelectedGloss");
			this.groupBoxSelectedGloss.Name = "groupBoxSelectedGloss";
			this.groupBoxSelectedGloss.TabStop = false;
			//
			// tableLayoutPanelSelectedGloss
			//
			resources.ApplyResources(tableLayoutPanelSelectedGloss, "tableLayoutPanelSelectedGloss");
			tableLayoutPanelSelectedGloss.Controls.Add(this.glossListBoxGloss, 0, 0);
			tableLayoutPanelSelectedGloss.Controls.Add(panel, 1, 0);
			tableLayoutPanelSelectedGloss.Name = "tableLayoutPanelSelectedGloss";
			//
			// panel
			//
			panel.Controls.Add(this.buttonMoveUp);
			panel.Controls.Add(this.buttonMoveDown);
			panel.Controls.Add(this.buttonModify);
			resources.ApplyResources(panel, "panel");
			panel.Name = "panel";
			//
			// buttonMoveUp
			//
			resources.ApplyResources(this.buttonMoveUp, "buttonMoveUp");
			this.buttonMoveUp.Name = "buttonMoveUp";
			this.buttonMoveUp.Click += new System.EventHandler(this.OnMoveUpButtonClick);
			//
			// buttonMoveDown
			//
			resources.ApplyResources(this.buttonMoveDown, "buttonMoveDown");
			this.buttonMoveDown.Name = "buttonMoveDown";
			this.buttonMoveDown.Click += new System.EventHandler(this.OnMoveDownButtonClick);
			//
			// buttonModify
			//
			resources.ApplyResources(this.buttonModify, "buttonModify");
			this.buttonModify.Name = "buttonModify";
			this.buttonModify.Click += new System.EventHandler(this.OnModifyButtonClick);
			//
			// panel2
			//
			panel2.Controls.Add(this.buttonHelp);
			panel2.Controls.Add(this.buttonAcceptGloss);
			panel2.Controls.Add(this.buttonCancel);
			resources.ApplyResources(panel2, "panel2");
			panel2.Name = "panel2";
			//
			// buttonHelp
			//
			resources.ApplyResources(this.buttonHelp, "buttonHelp");
			this.buttonHelp.Name = "buttonHelp";
			this.buttonHelp.Click += new System.EventHandler(this.OnHelpButtonClick);
			//
			// buttonAcceptGloss
			//
			this.buttonAcceptGloss.DialogResult = System.Windows.Forms.DialogResult.OK;
			resources.ApplyResources(this.buttonAcceptGloss, "buttonAcceptGloss");
			this.buttonAcceptGloss.Name = "buttonAcceptGloss";
			this.buttonAcceptGloss.Click += new System.EventHandler(this.OnAcceptGlossButtonClick);
			//
			// buttonCancel
			//
			this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			resources.ApplyResources(this.buttonCancel, "buttonCancel");
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.Click += new System.EventHandler(this.OnCancelButtonClick);
			//
			// panelTop
			//
			panelTop.Controls.Add(tableLayoutPanel2);
			panelTop.Controls.Add(this.textBoxResult);
			resources.ApplyResources(panelTop, "panelTop");
			panelTop.Name = "panelTop";
			panelTop.TabStop = true;
			//
			// tableLayoutPanel2
			//
			resources.ApplyResources(tableLayoutPanel2, "tableLayoutPanel2");
			tableLayoutPanel2.Controls.Add(this.labelConstructedGlossForPrompt, 0, 0);
			tableLayoutPanel2.Controls.Add(this.labelAllomorph, 0, 1);
			tableLayoutPanel2.Name = "tableLayoutPanel2";
			//
			// labelConstructedGlossForPrompt
			//
			resources.ApplyResources(this.labelConstructedGlossForPrompt, "labelConstructedGlossForPrompt");
			this.labelConstructedGlossForPrompt.Name = "labelConstructedGlossForPrompt";
			//
			// labelAllomorph
			//
			resources.ApplyResources(this.labelAllomorph, "labelAllomorph");
			this.labelAllomorph.Name = "labelAllomorph";
			//
			// textBoxResult
			//
			resources.ApplyResources(this.textBoxResult, "textBoxResult");
			this.textBoxResult.Name = "textBoxResult";
			//
			// splitContainerHorizontal
			//
			resources.ApplyResources(this.splitContainerHorizontal, "splitContainerHorizontal");
			this.splitContainerHorizontal.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
			this.splitContainerHorizontal.Name = "splitContainerHorizontal";
			//
			// splitContainerHorizontal.Panel1
			//
			this.splitContainerHorizontal.Panel1.Controls.Add(this.splitContainerVertical);
			//
			// splitContainerHorizontal.Panel2
			//
			this.splitContainerHorizontal.Panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
			//
			// treeViewGlossListItem
			//
			resources.ApplyResources(this.treeViewGlossListItem, "treeViewGlossListItem");
			this.treeViewGlossListItem.HideSelection = false;
			this.treeViewGlossListItem.ItemHeight = 16;
			this.treeViewGlossListItem.Name = "treeViewGlossListItem";
			this.treeViewGlossListItem.TerminalsUseCheckBoxes = false;
			this.treeViewGlossListItem.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OnGlossListTreeSelect);
			//
			// glossListBoxGloss
			//
			resources.ApplyResources(this.glossListBoxGloss, "glossListBoxGloss");
			this.glossListBoxGloss.FormattingEnabled = true;
			this.glossListBoxGloss.MGADialog = null;
			this.glossListBoxGloss.Name = "glossListBoxGloss";
			this.glossListBoxGloss.SelectedIndexChanged += new System.EventHandler(this.OnGlossListBoxSelectedIndexChanged);
			//
			// MGADialog
			//
			this.AcceptButton = this.buttonAcceptGloss;
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.buttonCancel;
			this.Controls.Add(this.splitContainerHorizontal);
			this.Controls.Add(panelTop);
			this.HelpButton = true;
			this.Name = "MGADialog";
			this.splitContainerVertical.Panel1.ResumeLayout(false);
			this.splitContainerVertical.Panel2.ResumeLayout(false);
			this.splitContainerVertical.ResumeLayout(false);
			panelGlossComponents.ResumeLayout(false);
			this.groupBoxGlossComponents.ResumeLayout(false);
			tableLayoutPanel1.ResumeLayout(false);
			panel1.ResumeLayout(false);
			panelInsertRemove.ResumeLayout(false);
			panelSelectedGloss.ResumeLayout(false);
			this.groupBoxSelectedGloss.ResumeLayout(false);
			tableLayoutPanelSelectedGloss.ResumeLayout(false);
			panel.ResumeLayout(false);
			panel2.ResumeLayout(false);
			panelTop.ResumeLayout(false);
			panelTop.PerformLayout();
			tableLayoutPanel2.ResumeLayout(false);
			this.splitContainerHorizontal.Panel1.ResumeLayout(false);
			this.splitContainerHorizontal.Panel2.ResumeLayout(false);
			this.splitContainerHorizontal.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Ejemplo n.º 9
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(RegionVariantControl));
			this.m_regionAbbrev = new System.Windows.Forms.TextBox();
			this.m_variantNameLabel = new System.Windows.Forms.Label();
			this.m_variantAbbrev = new System.Windows.Forms.TextBox();
			this.m_regionAbbrevLabel = new System.Windows.Forms.Label();
			this.m_variantAbbrevLabel = new System.Windows.Forms.Label();
			this.m_regionNameLabel = new System.Windows.Forms.Label();
			this.m_helpProvider = new System.Windows.Forms.HelpProvider();
			this.m_scriptNameLabel = new System.Windows.Forms.Label();
			this.m_scriptAbbrevLabel = new System.Windows.Forms.Label();
			this.m_scriptAbbrev = new System.Windows.Forms.TextBox();
			this.m_scriptName = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_variantName = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_regionName = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.SuspendLayout();
			//
			// m_regionAbbrev
			//
			resources.ApplyResources(this.m_regionAbbrev, "m_regionAbbrev");
			this.m_regionAbbrev.Name = "m_regionAbbrev";
			this.m_helpProvider.SetShowHelp(this.m_regionAbbrev, ((bool)(resources.GetObject("m_regionAbbrev.ShowHelp"))));
			this.m_regionAbbrev.TextChanged += new System.EventHandler(this.m_regionCode_TextChanged);
			this.m_regionAbbrev.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.m_regionCode_KeyPress);
			//
			// m_variantNameLabel
			//
			resources.ApplyResources(this.m_variantNameLabel, "m_variantNameLabel");
			this.m_variantNameLabel.BackColor = System.Drawing.Color.Transparent;
			this.m_variantNameLabel.Name = "m_variantNameLabel";
			this.m_helpProvider.SetShowHelp(this.m_variantNameLabel, ((bool)(resources.GetObject("m_variantNameLabel.ShowHelp"))));
			//
			// m_variantAbbrev
			//
			resources.ApplyResources(this.m_variantAbbrev, "m_variantAbbrev");
			this.m_variantAbbrev.Name = "m_variantAbbrev";
			this.m_helpProvider.SetShowHelp(this.m_variantAbbrev, ((bool)(resources.GetObject("m_variantAbbrev.ShowHelp"))));
			this.m_variantAbbrev.TextChanged += new System.EventHandler(this.m_variantCode_TextChanged);
			this.m_variantAbbrev.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.m_variantCode_KeyPress);
			//
			// m_regionAbbrevLabel
			//
			resources.ApplyResources(this.m_regionAbbrevLabel, "m_regionAbbrevLabel");
			this.m_regionAbbrevLabel.BackColor = System.Drawing.Color.Transparent;
			this.m_regionAbbrevLabel.Name = "m_regionAbbrevLabel";
			this.m_helpProvider.SetShowHelp(this.m_regionAbbrevLabel, ((bool)(resources.GetObject("m_regionAbbrevLabel.ShowHelp"))));
			//
			// m_variantAbbrevLabel
			//
			resources.ApplyResources(this.m_variantAbbrevLabel, "m_variantAbbrevLabel");
			this.m_variantAbbrevLabel.BackColor = System.Drawing.Color.Transparent;
			this.m_variantAbbrevLabel.Name = "m_variantAbbrevLabel";
			this.m_helpProvider.SetShowHelp(this.m_variantAbbrevLabel, ((bool)(resources.GetObject("m_variantAbbrevLabel.ShowHelp"))));
			//
			// m_regionNameLabel
			//
			resources.ApplyResources(this.m_regionNameLabel, "m_regionNameLabel");
			this.m_regionNameLabel.BackColor = System.Drawing.Color.Transparent;
			this.m_regionNameLabel.Name = "m_regionNameLabel";
			this.m_helpProvider.SetShowHelp(this.m_regionNameLabel, ((bool)(resources.GetObject("m_regionNameLabel.ShowHelp"))));
			//
			// m_scriptNameLabel
			//
			resources.ApplyResources(this.m_scriptNameLabel, "m_scriptNameLabel");
			this.m_scriptNameLabel.Name = "m_scriptNameLabel";
			this.m_helpProvider.SetShowHelp(this.m_scriptNameLabel, ((bool)(resources.GetObject("m_scriptNameLabel.ShowHelp"))));
			//
			// m_scriptAbbrevLabel
			//
			resources.ApplyResources(this.m_scriptAbbrevLabel, "m_scriptAbbrevLabel");
			this.m_scriptAbbrevLabel.Name = "m_scriptAbbrevLabel";
			this.m_helpProvider.SetShowHelp(this.m_scriptAbbrevLabel, ((bool)(resources.GetObject("m_scriptAbbrevLabel.ShowHelp"))));
			//
			// m_scriptAbbrev
			//
			resources.ApplyResources(this.m_scriptAbbrev, "m_scriptAbbrev");
			this.m_scriptAbbrev.Name = "m_scriptAbbrev";
			this.m_helpProvider.SetShowHelp(this.m_scriptAbbrev, ((bool)(resources.GetObject("m_scriptAbbrev.ShowHelp"))));
			this.m_scriptAbbrev.TextChanged += new System.EventHandler(this.m_scriptCode_TextChanged);
			this.m_scriptAbbrev.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.m_scriptCode_KeyPress);
			//
			// m_scriptName
			//
			this.m_scriptName.AllowSpaceInEditBox = true;
			//			this.m_scriptName.DataSource = this.regionVariantControlBindingSource1;
			resources.ApplyResources(this.m_scriptName, "m_scriptName");
			this.m_scriptName.Name = "m_scriptName";
			this.m_helpProvider.SetShowHelp(this.m_scriptName, ((bool)(resources.GetObject("m_scriptName.ShowHelp"))));
			this.m_scriptName.Sorted = true;
			this.m_scriptName.TextChanged += new System.EventHandler(this.m_scriptName_TextChanged);

			//
			// m_variantName
			//
			this.m_variantName.AllowSpaceInEditBox = true;
			this.m_helpProvider.SetHelpString(this.m_variantName, resources.GetString("m_variantName.HelpString"));
			resources.ApplyResources(this.m_variantName, "m_variantName");
			this.m_variantName.Name = "m_variantName";
			this.m_helpProvider.SetShowHelp(this.m_variantName, ((bool)(resources.GetObject("m_variantName.ShowHelp"))));
			this.m_variantName.Sorted = true;
			this.m_variantName.SelectedIndexChanged += m_variantName_TextChanged;
			this.m_variantName.TextChanged += new System.EventHandler(this.m_variantName_TextChanged);
			//
			// m_regionName
			//
			this.m_regionName.AllowSpaceInEditBox = true;
			this.m_helpProvider.SetHelpString(this.m_regionName, resources.GetString("m_regionName.HelpString"));
			resources.ApplyResources(this.m_regionName, "m_regionName");
			this.m_regionName.Name = "m_regionName";
			this.m_helpProvider.SetShowHelp(this.m_regionName, ((bool)(resources.GetObject("m_regionName.ShowHelp"))));
			this.m_regionName.Sorted = true;
			this.m_regionName.TextChanged += new System.EventHandler(this.m_regionName_TextChanged);
			//
			//
			// RegionVariantControl
			//
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Controls.Add(this.m_scriptName);
			this.Controls.Add(this.m_scriptAbbrev);
			this.Controls.Add(this.m_scriptAbbrevLabel);
			this.Controls.Add(this.m_scriptNameLabel);
			this.Controls.Add(this.m_variantName);
			this.Controls.Add(this.m_regionName);
			this.Controls.Add(this.m_regionAbbrev);
			this.Controls.Add(this.m_variantNameLabel);
			this.Controls.Add(this.m_variantAbbrev);
			this.Controls.Add(this.m_regionAbbrevLabel);
			this.Controls.Add(this.m_variantAbbrevLabel);
			this.Controls.Add(this.m_regionNameLabel);
			this.Name = "RegionVariantControl";
			this.m_helpProvider.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			resources.ApplyResources(this, "$this");
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 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(LexImportWizardLanguage));
			this.lblComment = new System.Windows.Forms.Label();
			this.lblLangDesc = new System.Windows.Forms.Label();
			this.tbLangDesc = new System.Windows.Forms.TextBox();
			this.cbEC = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.lblEC = new System.Windows.Forms.Label();
			this.cbWS = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.lblWS = new System.Windows.Forms.Label();
			this.btnAddWS = new System.Windows.Forms.Button();
			this.btnAddEC = new System.Windows.Forms.Button();
			this.btnOK = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.buttonHelp = new System.Windows.Forms.Button();
			this.SuspendLayout();
			//
			// lblComment
			//
			resources.ApplyResources(this.lblComment, "lblComment");
			this.lblComment.Name = "lblComment";
			//
			// lblLangDesc
			//
			resources.ApplyResources(this.lblLangDesc, "lblLangDesc");
			this.lblLangDesc.Name = "lblLangDesc";
			//
			// tbLangDesc
			//
			resources.ApplyResources(this.tbLangDesc, "tbLangDesc");
			this.tbLangDesc.Name = "tbLangDesc";
			this.tbLangDesc.TextChanged += new System.EventHandler(this.tbLangDesc_TextChanged);
			//
			// cbEC
			//
			this.cbEC.AllowSpaceInEditBox = false;
			this.cbEC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.cbEC, "cbEC");
			this.cbEC.Name = "cbEC";
			this.cbEC.Sorted = true;
			//
			// lblEC
			//
			resources.ApplyResources(this.lblEC, "lblEC");
			this.lblEC.Name = "lblEC";
			//
			// cbWS
			//
			this.cbWS.AllowSpaceInEditBox = false;
			this.cbWS.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.cbWS, "cbWS");
			this.cbWS.Name = "cbWS";
			this.cbWS.Sorted = true;
			this.cbWS.SelectedValueChanged += new System.EventHandler(this.cbWS_SelectedValueChanged);
			//
			// lblWS
			//
			resources.ApplyResources(this.lblWS, "lblWS");
			this.lblWS.Name = "lblWS";
			//
			// btnAddWS
			//
			resources.ApplyResources(this.btnAddWS, "btnAddWS");
			this.btnAddWS.Name = "btnAddWS";
			this.btnAddWS.Paint += new System.Windows.Forms.PaintEventHandler(this.btnAddWS_Paint);
			this.btnAddWS.Click += new System.EventHandler(this.btnAddWS_Click);
			//
			// btnAddEC
			//
			resources.ApplyResources(this.btnAddEC, "btnAddEC");
			this.btnAddEC.Name = "btnAddEC";
			this.btnAddEC.Click += new System.EventHandler(this.btnAddEC_Click);
			//
			// btnOK
			//
			this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			resources.ApplyResources(this.btnOK, "btnOK");
			this.btnOK.Name = "btnOK";
			//
			// btnCancel
			//
			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			resources.ApplyResources(this.btnCancel, "btnCancel");
			this.btnCancel.Name = "btnCancel";
			//
			// groupBox1
			//
			resources.ApplyResources(this.groupBox1, "groupBox1");
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.TabStop = false;
			//
			// buttonHelp
			//
			resources.ApplyResources(this.buttonHelp, "buttonHelp");
			this.buttonHelp.Name = "buttonHelp";
			this.buttonHelp.Click += new System.EventHandler(this.buttonHelp_Click);
			//
			// LexImportWizardLanguage
			//
			this.AcceptButton = this.btnOK;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.btnCancel;
			this.Controls.Add(this.buttonHelp);
			this.Controls.Add(this.btnCancel);
			this.Controls.Add(this.btnOK);
			this.Controls.Add(this.btnAddEC);
			this.Controls.Add(this.btnAddWS);
			this.Controls.Add(this.cbEC);
			this.Controls.Add(this.lblEC);
			this.Controls.Add(this.cbWS);
			this.Controls.Add(this.lblWS);
			this.Controls.Add(this.tbLangDesc);
			this.Controls.Add(this.lblLangDesc);
			this.Controls.Add(this.lblComment);
			this.Controls.Add(this.groupBox1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "LexImportWizardLanguage";
			this.Load += new System.EventHandler(this.LexImportWizardLanguage_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 11
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(RegionVariantControl));
			this.m_RegionAbbrev = new System.Windows.Forms.TextBox();
			this.lblVariantName = new System.Windows.Forms.Label();
			this.m_VariantAbbrev = new System.Windows.Forms.TextBox();
			this.lblRegionAbbr = new System.Windows.Forms.Label();
			this.lblVariantAbbrev = new System.Windows.Forms.Label();
			this.lblRegionName = new System.Windows.Forms.Label();
			this.m_RegionName = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_VariantName = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.helpProvider1 = new System.Windows.Forms.HelpProvider();
			this.lblScriptName = new System.Windows.Forms.Label();
			this.lblScriptAbbreviation = new System.Windows.Forms.Label();
			this.m_ScriptAbbrev = new System.Windows.Forms.TextBox();
			this.m_ScriptName = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.SuspendLayout();
			//
			// m_RegionAbbrev
			//
			this.helpProvider1.SetHelpString(this.m_RegionAbbrev, resources.GetString("m_RegionAbbrev.HelpString"));
			resources.ApplyResources(this.m_RegionAbbrev, "m_RegionAbbrev");
			this.m_RegionAbbrev.Name = "m_RegionAbbrev";
			this.helpProvider1.SetShowHelp(this.m_RegionAbbrev, ((bool)(resources.GetObject("m_RegionAbbrev.ShowHelp"))));
			this.m_RegionAbbrev.TextChanged += new System.EventHandler(this.m_RegionAbbrev_TextChanged);
			this.m_RegionAbbrev.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.m_RegionAbbrev_KeyPress);
			//
			// lblVariantName
			//
			resources.ApplyResources(this.lblVariantName, "lblVariantName");
			this.lblVariantName.BackColor = System.Drawing.Color.Transparent;
			this.lblVariantName.Name = "lblVariantName";
			this.helpProvider1.SetShowHelp(this.lblVariantName, ((bool)(resources.GetObject("lblVariantName.ShowHelp"))));
			//
			// m_VariantAbbrev
			//
			this.helpProvider1.SetHelpString(this.m_VariantAbbrev, resources.GetString("m_VariantAbbrev.HelpString"));
			resources.ApplyResources(this.m_VariantAbbrev, "m_VariantAbbrev");
			this.m_VariantAbbrev.Name = "m_VariantAbbrev";
			this.helpProvider1.SetShowHelp(this.m_VariantAbbrev, ((bool)(resources.GetObject("m_VariantAbbrev.ShowHelp"))));
			this.m_VariantAbbrev.TextChanged += new System.EventHandler(this.m_VariantAbbrev_TextChanged);
			this.m_VariantAbbrev.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.m_VariantAbbrev_KeyPress);
			//
			// lblRegionAbbr
			//
			resources.ApplyResources(this.lblRegionAbbr, "lblRegionAbbr");
			this.lblRegionAbbr.BackColor = System.Drawing.Color.Transparent;
			this.lblRegionAbbr.Name = "lblRegionAbbr";
			this.helpProvider1.SetShowHelp(this.lblRegionAbbr, ((bool)(resources.GetObject("lblRegionAbbr.ShowHelp"))));
			//
			// lblVariantAbbrev
			//
			resources.ApplyResources(this.lblVariantAbbrev, "lblVariantAbbrev");
			this.lblVariantAbbrev.BackColor = System.Drawing.Color.Transparent;
			this.lblVariantAbbrev.Name = "lblVariantAbbrev";
			this.helpProvider1.SetShowHelp(this.lblVariantAbbrev, ((bool)(resources.GetObject("lblVariantAbbrev.ShowHelp"))));
			//
			// lblRegionName
			//
			resources.ApplyResources(this.lblRegionName, "lblRegionName");
			this.lblRegionName.BackColor = System.Drawing.Color.Transparent;
			this.lblRegionName.Name = "lblRegionName";
			this.helpProvider1.SetShowHelp(this.lblRegionName, ((bool)(resources.GetObject("lblRegionName.ShowHelp"))));
			//
			// m_RegionName
			//
			this.m_RegionName.AllowSpaceInEditBox = false;
			this.helpProvider1.SetHelpString(this.m_RegionName, resources.GetString("m_RegionName.HelpString"));
			resources.ApplyResources(this.m_RegionName, "m_RegionName");
			this.m_RegionName.Name = "m_RegionName";
			this.helpProvider1.SetShowHelp(this.m_RegionName, ((bool)(resources.GetObject("m_RegionName.ShowHelp"))));
			this.m_RegionName.SelectedIndexChanged += new System.EventHandler(this.m_RegionName_SelectedIndexChanged);
			this.m_RegionName.Leave += new System.EventHandler(this.m_RegionName_Leave);
			this.m_RegionName.TextChanged += new System.EventHandler(this.m_RegionName_TextChanged);
			//
			// m_VariantName
			//
			this.m_VariantName.AllowSpaceInEditBox = false;
			this.helpProvider1.SetHelpString(this.m_VariantName, resources.GetString("m_VariantName.HelpString"));
			resources.ApplyResources(this.m_VariantName, "m_VariantName");
			this.m_VariantName.Name = "m_VariantName";
			this.helpProvider1.SetShowHelp(this.m_VariantName, ((bool)(resources.GetObject("m_VariantName.ShowHelp"))));
			this.m_VariantName.SelectedIndexChanged += new System.EventHandler(this.m_VariantName_SelectedIndexChanged);
			this.m_VariantName.Leave += new System.EventHandler(this.m_VariantName_Leave);
			this.m_VariantName.TextChanged += new System.EventHandler(this.m_VariantName_TextChanged);
			//
			// lblScriptName
			//
			resources.ApplyResources(this.lblScriptName, "lblScriptName");
			this.lblScriptName.Name = "lblScriptName";
			//
			// lblScriptAbbreviation
			//
			resources.ApplyResources(this.lblScriptAbbreviation, "lblScriptAbbreviation");
			this.lblScriptAbbreviation.Name = "lblScriptAbbreviation";
			//
			// m_ScriptAbbrev
			//
			resources.ApplyResources(this.m_ScriptAbbrev, "m_ScriptAbbrev");
			this.m_ScriptAbbrev.Name = "m_ScriptAbbrev";
			this.m_ScriptAbbrev.TextChanged += new System.EventHandler(this.m_ScriptAbbrev_TextChanged);
			this.m_ScriptAbbrev.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.m_ScriptAbbrev_KeyPress);
			//
			// m_ScriptName
			//
			this.m_ScriptName.AllowSpaceInEditBox = false;
			this.m_ScriptName.FormattingEnabled = true;
			resources.ApplyResources(this.m_ScriptName, "m_ScriptName");
			this.m_ScriptName.Name = "m_ScriptName";
			this.m_ScriptName.SelectedIndexChanged += new System.EventHandler(this.m_ScriptName_SelectedIndexChanged);
			this.m_ScriptName.Leave += new System.EventHandler(this.m_ScriptName_Leave);
			this.m_ScriptName.TextChanged += new System.EventHandler(this.m_ScriptName_TextChanged);
			//
			// RegionVariantControl
			//
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Controls.Add(this.m_ScriptName);
			this.Controls.Add(this.m_ScriptAbbrev);
			this.Controls.Add(this.lblScriptAbbreviation);
			this.Controls.Add(this.lblScriptName);
			this.Controls.Add(this.m_VariantName);
			this.Controls.Add(this.m_RegionName);
			this.Controls.Add(this.m_RegionAbbrev);
			this.Controls.Add(this.lblVariantName);
			this.Controls.Add(this.m_VariantAbbrev);
			this.Controls.Add(this.lblRegionAbbr);
			this.Controls.Add(this.lblVariantAbbrev);
			this.Controls.Add(this.lblRegionName);
			this.Name = "RegionVariantControl";
			this.helpProvider1.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			resources.ApplyResources(this, "$this");
			this.Leave += new System.EventHandler(this.RegionVariantControl_Leave);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 12
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(CnvtrPropertiesCtrl));
			this.lblSpecs = new System.Windows.Forms.Label();
			this.helpProvider1 = new HelpProvider();
			this.lblConversion = new System.Windows.Forms.Label();
			this.lblName = new System.Windows.Forms.Label();
			this.lblConverter = new System.Windows.Forms.Label();
			this.cboConversion = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.txtName = new System.Windows.Forms.TextBox();
			this.btnMapFile = new System.Windows.Forms.Button();
			this.txtMapFile = new System.Windows.Forms.TextBox();
			this.cboConverter = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.cboSpec = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.btnModify = new System.Windows.Forms.Button();
			this.btnMore = new System.Windows.Forms.Button();
			this.SuspendLayout();
			//
			// lblSpecs
			//
			resources.ApplyResources(this.lblSpecs, "lblSpecs");
			this.lblSpecs.Name = "lblSpecs";
			this.helpProvider1.SetShowHelp(this.lblSpecs, ((bool)(resources.GetObject("lblSpecs.ShowHelp"))));
			//
			// lblConversion
			//
			resources.ApplyResources(this.lblConversion, "lblConversion");
			this.lblConversion.Name = "lblConversion";
			this.helpProvider1.SetShowHelp(this.lblConversion, ((bool)(resources.GetObject("lblConversion.ShowHelp"))));
			//
			// lblName
			//
			resources.ApplyResources(this.lblName, "lblName");
			this.lblName.Name = "lblName";
			this.helpProvider1.SetShowHelp(this.lblName, ((bool)(resources.GetObject("lblName.ShowHelp"))));
			//
			// lblConverter
			//
			resources.ApplyResources(this.lblConverter, "lblConverter");
			this.lblConverter.Name = "lblConverter";
			this.helpProvider1.SetShowHelp(this.lblConverter, ((bool)(resources.GetObject("lblConverter.ShowHelp"))));
			//
			// cboConversion
			//
			this.cboConversion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider1.SetHelpString(this.cboConversion, resources.GetString("cboConversion.HelpString"));
			resources.ApplyResources(this.cboConversion, "cboConversion");
			this.cboConversion.Name = "cboConversion";
			this.helpProvider1.SetShowHelp(this.cboConversion, ((bool)(resources.GetObject("cboConversion.ShowHelp"))));
			this.cboConversion.SelectedIndexChanged += new System.EventHandler(this.cboConversion_SelectedIndexChanged);
			//
			// txtName
			//
			resources.ApplyResources(this.txtName, "txtName");
			this.helpProvider1.SetHelpString(this.txtName, resources.GetString("txtName.HelpString"));
			this.txtName.Name = "txtName";
			this.helpProvider1.SetShowHelp(this.txtName, ((bool)(resources.GetObject("txtName.ShowHelp"))));
			this.txtName.TextChanged += new System.EventHandler(this.txtName_TextChanged);
			//
			// btnMapFile
			//
			resources.ApplyResources(this.btnMapFile, "btnMapFile");
			this.btnMapFile.Name = "btnMapFile";
			this.helpProvider1.SetShowHelp(this.btnMapFile, ((bool)(resources.GetObject("btnMapFile.ShowHelp"))));
			this.btnMapFile.Click += new System.EventHandler(this.btnMapFile_Click);
			//
			// txtMapFile
			//
			resources.ApplyResources(this.txtMapFile, "txtMapFile");
			this.txtMapFile.Name = "txtMapFile";
			this.helpProvider1.SetShowHelp(this.txtMapFile, ((bool)(resources.GetObject("txtMapFile.ShowHelp"))));
			this.txtMapFile.TextChanged += new System.EventHandler(this.txtMapFile_TextChanged);
			//
			// cboConverter
			//
			this.cboConverter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider1.SetHelpString(this.cboConverter, resources.GetString("cboConverter.HelpString"));
			resources.ApplyResources(this.cboConverter, "cboConverter");
			this.cboConverter.Name = "cboConverter";
			this.helpProvider1.SetShowHelp(this.cboConverter, ((bool)(resources.GetObject("cboConverter.ShowHelp"))));
			this.cboConverter.SelectedIndexChanged += new System.EventHandler(this.cboConverter_SelectedIndexChanged);
			//
			// cboSpec
			//
			resources.ApplyResources(this.cboSpec, "cboSpec");
			this.cboSpec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider1.SetHelpString(this.cboSpec, resources.GetString("cboSpec.HelpString"));
			this.cboSpec.Name = "cboSpec";
			this.helpProvider1.SetShowHelp(this.cboSpec, ((bool)(resources.GetObject("cboSpec.ShowHelp"))));
			this.cboSpec.Sorted = true;
			this.cboSpec.SelectedIndexChanged += new System.EventHandler(this.cboSpec_SelectedIndexChanged);
			//
			// btnModify
			//
			resources.ApplyResources(this.btnModify, "btnModify");
			this.btnModify.Name = "btnModify";
			this.btnModify.UseVisualStyleBackColor = true;
			this.btnModify.Click += new System.EventHandler(this.btnModify_Click);
			//
			// btnMore
			//
			resources.ApplyResources(this.btnMore, "btnMore");
			this.btnMore.Name = "btnMore";
			this.btnMore.UseVisualStyleBackColor = true;
			this.btnMore.Click += new System.EventHandler(this.btnMore_Click);
			//
			// CnvtrPropertiesCtrl
			//
			this.Controls.Add(this.btnMore);
			this.Controls.Add(this.btnModify);
			this.Controls.Add(this.cboSpec);
			this.Controls.Add(this.lblConverter);
			this.Controls.Add(this.cboConverter);
			this.Controls.Add(this.lblConversion);
			this.Controls.Add(this.lblName);
			this.Controls.Add(this.lblSpecs);
			this.Controls.Add(this.cboConversion);
			this.Controls.Add(this.txtName);
			this.Controls.Add(this.btnMapFile);
			this.Controls.Add(this.txtMapFile);
			this.Name = "CnvtrPropertiesCtrl";
			this.helpProvider1.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			resources.ApplyResources(this, "$this");
			this.Load += new System.EventHandler(this.CnvtrPropertiesCtrl_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 13
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(LexImportWizard));
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.label1 = new System.Windows.Forms.Label();
			this.btnBackup = new System.Windows.Forms.Button();
			this.lblBackupInstructions = new System.Windows.Forms.Label();
			this.lblBackup = new System.Windows.Forms.Label();
			this.lblOverviewInstructions = new System.Windows.Forms.Label();
			this.lblOverview = new System.Windows.Forms.Label();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.lblSettingsTag = new System.Windows.Forms.Label();
			this.lblFile = new System.Windows.Forms.Label();
			this.m_SettingsFileName = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.btnSaveAsBrowse = new System.Windows.Forms.Button();
			this.m_SaveAsFileName = new System.Windows.Forms.TextBox();
			this.lblSaveAs = new System.Windows.Forms.Label();
			this.lblSaveAsInstructions = new System.Windows.Forms.Label();
			this.btnSettingsBrowse = new System.Windows.Forms.Button();
			this.lblSettings = new System.Windows.Forms.Label();
			this.lblSettingsInstructions = new System.Windows.Forms.Label();
			this.btnDatabaseBrowse = new System.Windows.Forms.Button();
			this.m_DatabaseFileName = new System.Windows.Forms.TextBox();
			this.lblDatabase = new System.Windows.Forms.Label();
			this.lblDatabaseInstructions = new System.Windows.Forms.Label();
			this.tabPage3 = new System.Windows.Forms.TabPage();
			this.btnModifyMappingLanguage = new System.Windows.Forms.Button();
			this.btnAddMappingLanguage = new System.Windows.Forms.Button();
			this.listViewMappingLanguages = new System.Windows.Forms.ListView();
			this.LangcolumnHeader1 = new System.Windows.Forms.ColumnHeader();
			this.LangcolumnHeader2 = new System.Windows.Forms.ColumnHeader();
			this.LangcolumnHeader3 = new System.Windows.Forms.ColumnHeader();
			this.lblMappingLanguagesInstructions = new System.Windows.Forms.Label();
			this.lblMappingLanguages = new System.Windows.Forms.Label();
			this.tabPage4 = new System.Windows.Forms.TabPage();
			this.lblTotalMarkers = new System.Windows.Forms.Label();
			this.btnModifyContentMapping = new System.Windows.Forms.Button();
			this.lblContentInstructions2 = new System.Windows.Forms.Label();
			this.lblContentInstructions1 = new System.Windows.Forms.Label();
			this.lblContentMappings = new System.Windows.Forms.Label();
			this.listViewContentMapping = new System.Windows.Forms.ListView();
			this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
			this.tabPage6 = new System.Windows.Forms.TabPage();
			this.btnDeleteCharMapping = new System.Windows.Forms.Button();
			this.btnModifyCharMapping = new System.Windows.Forms.Button();
			this.btnAddCharMapping = new System.Windows.Forms.Button();
			this.label2 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.listViewCharMappings = new System.Windows.Forms.ListView();
			this.columnHeaderCM1 = new System.Windows.Forms.ColumnHeader();
			this.columnHeaderCM2 = new System.Windows.Forms.ColumnHeader();
			this.columnHeaderCM3 = new System.Windows.Forms.ColumnHeader();
			this.columnHeaderCM4 = new System.Windows.Forms.ColumnHeader();
			this.tabPage5 = new System.Windows.Forms.TabPage();
			this.tvBeginMarkers = new System.Windows.Forms.TreeView();
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.lblStep5KeyMarkers = new System.Windows.Forms.Label();
			this.labelStep5Description = new System.Windows.Forms.Label();
			this.tabPage7 = new System.Windows.Forms.TabPage();
			this.lblGenerateReportMsg = new System.Windows.Forms.Label();
			this.btnGenerateReport = new System.Windows.Forms.Button();
			this.FeasabilityCheckInstructions = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.gbGenerateReport = new System.Windows.Forms.GroupBox();
			this.tabPage8 = new System.Windows.Forms.TabPage();
			this.lblFinishWOImport = new System.Windows.Forms.Label();
			this.m_DisplayImportReport = new System.Windows.Forms.CheckBox();
			this.lblReadyToImportInstructions = new System.Windows.Forms.Label();
			this.lblReadyToImport = new System.Windows.Forms.Label();
			this.btnQuickFinish = new System.Windows.Forms.Button();
			this.btnSaveMapFile = new System.Windows.Forms.Button();
			this.tabSteps.SuspendLayout();
			this.tabPage1.SuspendLayout();
			this.tabPage2.SuspendLayout();
			this.tabPage3.SuspendLayout();
			this.tabPage4.SuspendLayout();
			this.tabPage6.SuspendLayout();
			this.tabPage5.SuspendLayout();
			this.tabPage7.SuspendLayout();
			this.tabPage8.SuspendLayout();
			this.SuspendLayout();
			//
			// panSteps
			//
			resources.ApplyResources(this.panSteps, "panSteps");
			//
			// lblSteps
			//
			resources.ApplyResources(this.lblSteps, "lblSteps");
			//
			// m_btnBack
			//
			resources.ApplyResources(this.m_btnBack, "m_btnBack");
			//
			// m_btnCancel
			//
			resources.ApplyResources(this.m_btnCancel, "m_btnCancel");
			//
			// m_btnNext
			//
			resources.ApplyResources(this.m_btnNext, "m_btnNext");
			//
			// m_btnHelp
			//
			resources.ApplyResources(this.m_btnHelp, "m_btnHelp");
			//
			// tabSteps
			//
			resources.ApplyResources(this.tabSteps, "tabSteps");
			this.tabSteps.Controls.Add(this.tabPage1);
			this.tabSteps.Controls.Add(this.tabPage2);
			this.tabSteps.Controls.Add(this.tabPage3);
			this.tabSteps.Controls.Add(this.tabPage4);
			this.tabSteps.Controls.Add(this.tabPage5);
			this.tabSteps.Controls.Add(this.tabPage6);
			this.tabSteps.Controls.Add(this.tabPage7);
			this.tabSteps.Controls.Add(this.tabPage8);
			//
			// tabPage1
			//
			resources.ApplyResources(this.tabPage1, "tabPage1");
			this.tabPage1.Controls.Add(this.label1);
			this.tabPage1.Controls.Add(this.btnBackup);
			this.tabPage1.Controls.Add(this.lblBackupInstructions);
			this.tabPage1.Controls.Add(this.lblBackup);
			this.tabPage1.Controls.Add(this.lblOverviewInstructions);
			this.tabPage1.Controls.Add(this.lblOverview);
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.UseVisualStyleBackColor = true;
			//
			// label1
			//
			this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			//
			// btnBackup
			//
			resources.ApplyResources(this.btnBackup, "btnBackup");
			this.btnBackup.Name = "btnBackup";
			this.btnBackup.Click += new System.EventHandler(this.btnBackup_Click);
			//
			// lblBackupInstructions
			//
			resources.ApplyResources(this.lblBackupInstructions, "lblBackupInstructions");
			this.lblBackupInstructions.Name = "lblBackupInstructions";
			//
			// lblBackup
			//
			resources.ApplyResources(this.lblBackup, "lblBackup");
			this.lblBackup.Name = "lblBackup";
			//
			// lblOverviewInstructions
			//
			resources.ApplyResources(this.lblOverviewInstructions, "lblOverviewInstructions");
			this.lblOverviewInstructions.Name = "lblOverviewInstructions";
			//
			// lblOverview
			//
			resources.ApplyResources(this.lblOverview, "lblOverview");
			this.lblOverview.Name = "lblOverview";
			//
			// tabPage2
			//
			resources.ApplyResources(this.tabPage2, "tabPage2");
			this.tabPage2.Controls.Add(this.lblSettingsTag);
			this.tabPage2.Controls.Add(this.lblFile);
			this.tabPage2.Controls.Add(this.m_SettingsFileName);
			this.tabPage2.Controls.Add(this.btnSaveAsBrowse);
			this.tabPage2.Controls.Add(this.m_SaveAsFileName);
			this.tabPage2.Controls.Add(this.lblSaveAs);
			this.tabPage2.Controls.Add(this.lblSaveAsInstructions);
			this.tabPage2.Controls.Add(this.btnSettingsBrowse);
			this.tabPage2.Controls.Add(this.lblSettings);
			this.tabPage2.Controls.Add(this.lblSettingsInstructions);
			this.tabPage2.Controls.Add(this.btnDatabaseBrowse);
			this.tabPage2.Controls.Add(this.m_DatabaseFileName);
			this.tabPage2.Controls.Add(this.lblDatabase);
			this.tabPage2.Controls.Add(this.lblDatabaseInstructions);
			this.tabPage2.Name = "tabPage2";
			this.tabPage2.UseVisualStyleBackColor = true;
			//
			// lblSettingsTag
			//
			resources.ApplyResources(this.lblSettingsTag, "lblSettingsTag");
			this.lblSettingsTag.Name = "lblSettingsTag";
			//
			// lblFile
			//
			resources.ApplyResources(this.lblFile, "lblFile");
			this.lblFile.Name = "lblFile";
			//
			// m_SettingsFileName
			//
			resources.ApplyResources(this.m_SettingsFileName, "m_SettingsFileName");
			this.m_SettingsFileName.AllowSpaceInEditBox = true;
			this.m_SettingsFileName.Name = "m_SettingsFileName";
			this.m_SettingsFileName.TextChanged += new System.EventHandler(this.m_SettingsFileName_TextChanged);
			//
			// btnSaveAsBrowse
			//
			resources.ApplyResources(this.btnSaveAsBrowse, "btnSaveAsBrowse");
			this.btnSaveAsBrowse.Name = "btnSaveAsBrowse";
			this.btnSaveAsBrowse.Tag = "";
			this.btnSaveAsBrowse.Click += new System.EventHandler(this.btnSaveAsBrowse_Click);
			//
			// m_SaveAsFileName
			//
			resources.ApplyResources(this.m_SaveAsFileName, "m_SaveAsFileName");
			this.m_SaveAsFileName.Name = "m_SaveAsFileName";
			this.m_SaveAsFileName.TextChanged += new System.EventHandler(this.m_SaveAsFileName_TextChanged);
			//
			// lblSaveAs
			//
			resources.ApplyResources(this.lblSaveAs, "lblSaveAs");
			this.lblSaveAs.Name = "lblSaveAs";
			//
			// lblSaveAsInstructions
			//
			resources.ApplyResources(this.lblSaveAsInstructions, "lblSaveAsInstructions");
			this.lblSaveAsInstructions.Name = "lblSaveAsInstructions";
			//
			// btnSettingsBrowse
			//
			resources.ApplyResources(this.btnSettingsBrowse, "btnSettingsBrowse");
			this.btnSettingsBrowse.Name = "btnSettingsBrowse";
			this.btnSettingsBrowse.Tag = "";
			this.btnSettingsBrowse.Click += new System.EventHandler(this.btnSettingsBrowse_Click);
			//
			// lblSettings
			//
			resources.ApplyResources(this.lblSettings, "lblSettings");
			this.lblSettings.Name = "lblSettings";
			//
			// lblSettingsInstructions
			//
			resources.ApplyResources(this.lblSettingsInstructions, "lblSettingsInstructions");
			this.lblSettingsInstructions.Name = "lblSettingsInstructions";
			//
			// btnDatabaseBrowse
			//
			resources.ApplyResources(this.btnDatabaseBrowse, "btnDatabaseBrowse");
			this.btnDatabaseBrowse.Name = "btnDatabaseBrowse";
			this.btnDatabaseBrowse.Tag = "";
			this.btnDatabaseBrowse.Click += new System.EventHandler(this.btnDatabaseBrowse_Click);
			//
			// m_DatabaseFileName
			//
			resources.ApplyResources(this.m_DatabaseFileName, "m_DatabaseFileName");
			this.m_DatabaseFileName.Name = "m_DatabaseFileName";
			this.m_DatabaseFileName.TextChanged += new System.EventHandler(this.m_DatabaseFileName_TextChanged);
			//
			// lblDatabase
			//
			resources.ApplyResources(this.lblDatabase, "lblDatabase");
			this.lblDatabase.Name = "lblDatabase";
			//
			// lblDatabaseInstructions
			//
			resources.ApplyResources(this.lblDatabaseInstructions, "lblDatabaseInstructions");
			this.lblDatabaseInstructions.Name = "lblDatabaseInstructions";
			//
			// tabPage3
			//
			resources.ApplyResources(this.tabPage3, "tabPage3");
			this.tabPage3.Controls.Add(this.btnModifyMappingLanguage);
			this.tabPage3.Controls.Add(this.btnAddMappingLanguage);
			this.tabPage3.Controls.Add(this.listViewMappingLanguages);
			this.tabPage3.Controls.Add(this.lblMappingLanguagesInstructions);
			this.tabPage3.Controls.Add(this.lblMappingLanguages);
			this.tabPage3.Name = "tabPage3";
			this.tabPage3.UseVisualStyleBackColor = true;
			//
			// btnModifyMappingLanguage
			//
			resources.ApplyResources(this.btnModifyMappingLanguage, "btnModifyMappingLanguage");
			this.btnModifyMappingLanguage.Name = "btnModifyMappingLanguage";
			this.btnModifyMappingLanguage.Click += new System.EventHandler(this.btnModifyMappingLanguage_Click);
			//
			// btnAddMappingLanguage
			//
			resources.ApplyResources(this.btnAddMappingLanguage, "btnAddMappingLanguage");
			this.btnAddMappingLanguage.Name = "btnAddMappingLanguage";
			this.btnAddMappingLanguage.Click += new System.EventHandler(this.btnAddMappingLanguage_Click);
			//
			// listViewMappingLanguages
			//
			resources.ApplyResources(this.listViewMappingLanguages, "listViewMappingLanguages");
			this.listViewMappingLanguages.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			this.LangcolumnHeader1,
			this.LangcolumnHeader2,
			this.LangcolumnHeader3});
			this.listViewMappingLanguages.FullRowSelect = true;
			this.listViewMappingLanguages.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
			this.listViewMappingLanguages.HideSelection = false;
			this.listViewMappingLanguages.MultiSelect = false;
			this.listViewMappingLanguages.Name = "listViewMappingLanguages";
			this.listViewMappingLanguages.UseCompatibleStateImageBehavior = false;
			this.listViewMappingLanguages.View = System.Windows.Forms.View.Details;
			this.listViewMappingLanguages.SelectedIndexChanged += new System.EventHandler(this.listViewMappingLanguages_SelectedIndexChanged);
			this.listViewMappingLanguages.DoubleClick += new System.EventHandler(this.listViewMappingLanguages_DoubleClick);
			this.listViewMappingLanguages.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listViewMappingLanguages_ColumnClick);
			//
			// LangcolumnHeader1
			//
			resources.ApplyResources(this.LangcolumnHeader1, "LangcolumnHeader1");
			//
			// LangcolumnHeader2
			//
			resources.ApplyResources(this.LangcolumnHeader2, "LangcolumnHeader2");
			//
			// LangcolumnHeader3
			//
			resources.ApplyResources(this.LangcolumnHeader3, "LangcolumnHeader3");
			//
			// lblMappingLanguagesInstructions
			//
			resources.ApplyResources(this.lblMappingLanguagesInstructions, "lblMappingLanguagesInstructions");
			this.lblMappingLanguagesInstructions.Name = "lblMappingLanguagesInstructions";
			//
			// lblMappingLanguages
			//
			resources.ApplyResources(this.lblMappingLanguages, "lblMappingLanguages");
			this.lblMappingLanguages.Name = "lblMappingLanguages";
			//
			// tabPage4
			//
			resources.ApplyResources(this.tabPage4, "tabPage4");
			this.tabPage4.Controls.Add(this.lblTotalMarkers);
			this.tabPage4.Controls.Add(this.btnModifyContentMapping);
			this.tabPage4.Controls.Add(this.lblContentInstructions2);
			this.tabPage4.Controls.Add(this.lblContentInstructions1);
			this.tabPage4.Controls.Add(this.lblContentMappings);
			this.tabPage4.Controls.Add(this.listViewContentMapping);
			this.tabPage4.Name = "tabPage4";
			this.tabPage4.UseVisualStyleBackColor = true;
			//
			// lblTotalMarkers
			//
			resources.ApplyResources(this.lblTotalMarkers, "lblTotalMarkers");
			this.lblTotalMarkers.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalMarkers.Name = "lblTotalMarkers";
			//
			// btnModifyContentMapping
			//
			resources.ApplyResources(this.btnModifyContentMapping, "btnModifyContentMapping");
			this.btnModifyContentMapping.Name = "btnModifyContentMapping";
			this.btnModifyContentMapping.Click += new System.EventHandler(this.btnModifyContentMapping_Click);
			//
			// lblContentInstructions2
			//
			resources.ApplyResources(this.lblContentInstructions2, "lblContentInstructions2");
			this.lblContentInstructions2.Name = "lblContentInstructions2";
			//
			// lblContentInstructions1
			//
			resources.ApplyResources(this.lblContentInstructions1, "lblContentInstructions1");
			this.lblContentInstructions1.Name = "lblContentInstructions1";
			//
			// lblContentMappings
			//
			resources.ApplyResources(this.lblContentMappings, "lblContentMappings");
			this.lblContentMappings.Name = "lblContentMappings";
			//
			// listViewContentMapping
			//
			resources.ApplyResources(this.listViewContentMapping, "listViewContentMapping");
			this.listViewContentMapping.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			this.columnHeader1,
			this.columnHeader6,
			this.columnHeader5,
			this.columnHeader2,
			this.columnHeader3,
			this.columnHeader4});
			this.listViewContentMapping.FullRowSelect = true;
			this.listViewContentMapping.HideSelection = false;
			this.listViewContentMapping.MultiSelect = false;
			this.listViewContentMapping.Name = "listViewContentMapping";
			this.listViewContentMapping.Sorting = System.Windows.Forms.SortOrder.Ascending;
			this.listViewContentMapping.UseCompatibleStateImageBehavior = false;
			this.listViewContentMapping.View = System.Windows.Forms.View.Details;
			this.listViewContentMapping.SelectedIndexChanged += new System.EventHandler(this.listViewContentMapping_SelectedIndexChanged);
			this.listViewContentMapping.DoubleClick += new System.EventHandler(this.listViewContentMapping_DoubleClick);
			this.listViewContentMapping.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listViewContentMapping_ColumnClick);
			//
			// columnHeader1
			//
			resources.ApplyResources(this.columnHeader1, "columnHeader1");
			//
			// columnHeader6
			//
			resources.ApplyResources(this.columnHeader6, "columnHeader6");
			//
			// columnHeader5
			//
			resources.ApplyResources(this.columnHeader5, "columnHeader5");
			//
			// columnHeader2
			//
			resources.ApplyResources(this.columnHeader2, "columnHeader2");
			//
			// columnHeader3
			//
			resources.ApplyResources(this.columnHeader3, "columnHeader3");
			//
			// columnHeader4
			//
			resources.ApplyResources(this.columnHeader4, "columnHeader4");
			//
			// tabPage6
			//
			resources.ApplyResources(this.tabPage6, "tabPage6");
			this.tabPage6.Controls.Add(this.btnDeleteCharMapping);
			this.tabPage6.Controls.Add(this.btnModifyCharMapping);
			this.tabPage6.Controls.Add(this.btnAddCharMapping);
			this.tabPage6.Controls.Add(this.label2);
			this.tabPage6.Controls.Add(this.label4);
			this.tabPage6.Controls.Add(this.listViewCharMappings);
			this.tabPage6.Name = "tabPage6";
			this.tabPage6.UseVisualStyleBackColor = true;
			//
			// btnDeleteCharMapping
			//
			resources.ApplyResources(this.btnDeleteCharMapping, "btnDeleteCharMapping");
			this.btnDeleteCharMapping.Name = "btnDeleteCharMapping";
			this.btnDeleteCharMapping.Click += new System.EventHandler(this.btnDeleteCharMapping_Click);
			//
			// btnModifyCharMapping
			//
			resources.ApplyResources(this.btnModifyCharMapping, "btnModifyCharMapping");
			this.btnModifyCharMapping.Name = "btnModifyCharMapping";
			this.btnModifyCharMapping.Click += new System.EventHandler(this.btnModifyCharMapping_Click);
			//
			// btnAddCharMapping
			//
			resources.ApplyResources(this.btnAddCharMapping, "btnAddCharMapping");
			this.btnAddCharMapping.Name = "btnAddCharMapping";
			this.btnAddCharMapping.Click += new System.EventHandler(this.btnAddCharMapping_Click);
			//
			// label2
			//
			resources.ApplyResources(this.label2, "label2");
			this.label2.Name = "label2";
			//
			// label4
			//
			resources.ApplyResources(this.label4, "label4");
			this.label4.Name = "label4";
			//
			// listViewCharMappings
			//
			this.listViewCharMappings.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			this.columnHeaderCM1,
			this.columnHeaderCM2,
			this.columnHeaderCM3,
			this.columnHeaderCM4});
			this.listViewCharMappings.FullRowSelect = true;
			this.listViewCharMappings.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
			this.listViewCharMappings.HideSelection = false;
			resources.ApplyResources(this.listViewCharMappings, "listViewCharMappings");
			this.listViewCharMappings.MultiSelect = false;
			this.listViewCharMappings.Name = "listViewCharMappings";
			this.listViewCharMappings.UseCompatibleStateImageBehavior = false;
			this.listViewCharMappings.View = System.Windows.Forms.View.Details;
			this.listViewCharMappings.SelectedIndexChanged += new System.EventHandler(this.listViewCharMappings_SelectedIndexChanged);
			this.listViewCharMappings.DoubleClick += new System.EventHandler(this.listViewCharMappings_DoubleClick);
			//
			// columnHeaderCM1
			//
			resources.ApplyResources(this.columnHeaderCM1, "columnHeaderCM1");
			//
			// columnHeaderCM2
			//
			resources.ApplyResources(this.columnHeaderCM2, "columnHeaderCM2");
			//
			// columnHeaderCM3
			//
			resources.ApplyResources(this.columnHeaderCM3, "columnHeaderCM3");
			//
			// columnHeaderCM4
			//
			resources.ApplyResources(this.columnHeaderCM4, "columnHeaderCM4");
			//
			// tabPage5
			//
			resources.ApplyResources(this.tabPage5, "tabPage5");
			this.tabPage5.Controls.Add(this.tvBeginMarkers);
			this.tabPage5.Controls.Add(this.lblStep5KeyMarkers);
			this.tabPage5.Controls.Add(this.labelStep5Description);
			this.tabPage5.Name = "tabPage5";
			this.tabPage5.UseVisualStyleBackColor = true;
			//
			// tvBeginMarkers
			//
			resources.ApplyResources(this.tvBeginMarkers, "tvBeginMarkers");
			this.tvBeginMarkers.ImageList = this.imageList1;
			this.tvBeginMarkers.ItemHeight = 16;
			this.tvBeginMarkers.Name = "tvBeginMarkers";
			this.tvBeginMarkers.ShowLines = false;
			this.tvBeginMarkers.ShowRootLines = false;
			this.tvBeginMarkers.BeforeCollapse += new System.Windows.Forms.TreeViewCancelEventHandler(this.tvBeginMarkers_BeforeCollapse);
			this.tvBeginMarkers.MouseDown += new System.Windows.Forms.MouseEventHandler(this.tvBeginMarkers_MouseUp);
			this.tvBeginMarkers.KeyUp += new System.Windows.Forms.KeyEventHandler(this.tvBeginMarkers_KeyUp);
			//
			// imageList1
			//
			this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			this.imageList1.TransparentColor = System.Drawing.Color.Fuchsia;
			this.imageList1.Images.SetKeyName(0, "CheckedBox");
			this.imageList1.Images.SetKeyName(1, "Bullet");
			this.imageList1.Images.SetKeyName(2, "CheckBox");
			//
			// lblStep5KeyMarkers
			//
			resources.ApplyResources(this.lblStep5KeyMarkers, "lblStep5KeyMarkers");
			this.lblStep5KeyMarkers.Name = "lblStep5KeyMarkers";
			//
			// labelStep5Description
			//
			resources.ApplyResources(this.labelStep5Description, "labelStep5Description");
			this.labelStep5Description.Name = "labelStep5Description";
			//
			// tabPage7
			//
			resources.ApplyResources(this.tabPage7, "tabPage7");
			this.tabPage7.Controls.Add(this.lblGenerateReportMsg);
			this.tabPage7.Controls.Add(this.btnGenerateReport);
			this.tabPage7.Controls.Add(this.FeasabilityCheckInstructions);
			this.tabPage7.Controls.Add(this.label3);
			this.tabPage7.Controls.Add(this.gbGenerateReport);
			this.tabPage7.Name = "tabPage7";
			this.tabPage7.UseVisualStyleBackColor = true;
			//
			// lblGenerateReportMsg
			//
			resources.ApplyResources(this.lblGenerateReportMsg, "lblGenerateReportMsg");
			this.lblGenerateReportMsg.Name = "lblGenerateReportMsg";
			//
			// btnGenerateReport
			//
			resources.ApplyResources(this.btnGenerateReport, "btnGenerateReport");
			this.btnGenerateReport.Name = "btnGenerateReport";
			this.btnGenerateReport.Click += new System.EventHandler(this.btnGenerateReport_Click);
			//
			// FeasabilityCheckInstructions
			//
			resources.ApplyResources(this.FeasabilityCheckInstructions, "FeasabilityCheckInstructions");
			this.FeasabilityCheckInstructions.Name = "FeasabilityCheckInstructions";
			//
			// label3
			//
			resources.ApplyResources(this.label3, "label3");
			this.label3.Name = "label3";
			//
			// gbGenerateReport
			//
			resources.ApplyResources(this.gbGenerateReport, "gbGenerateReport");
			this.gbGenerateReport.Name = "gbGenerateReport";
			this.gbGenerateReport.TabStop = false;
			//
			// tabPage8
			//
			resources.ApplyResources(this.tabPage8, "tabPage8");
			this.tabPage8.Controls.Add(this.lblFinishWOImport);
			this.tabPage8.Controls.Add(this.m_DisplayImportReport);
			this.tabPage8.Controls.Add(this.lblReadyToImportInstructions);
			this.tabPage8.Controls.Add(this.lblReadyToImport);
			this.tabPage8.Name = "tabPage8";
			this.tabPage8.UseVisualStyleBackColor = true;
			//
			// lblFinishWOImport
			//
			this.lblFinishWOImport.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			resources.ApplyResources(this.lblFinishWOImport, "lblFinishWOImport");
			this.lblFinishWOImport.ForeColor = System.Drawing.SystemColors.ActiveCaption;
			this.lblFinishWOImport.Name = "lblFinishWOImport";
			//
			// m_DisplayImportReport
			//
			resources.ApplyResources(this.m_DisplayImportReport, "m_DisplayImportReport");
			this.m_DisplayImportReport.Checked = true;
			this.m_DisplayImportReport.CheckState = System.Windows.Forms.CheckState.Checked;
			this.m_DisplayImportReport.Name = "m_DisplayImportReport";
			this.m_DisplayImportReport.KeyUp += new System.Windows.Forms.KeyEventHandler(this.m_DisplayImportReport_KeyUp);
			this.m_DisplayImportReport.KeyDown += new System.Windows.Forms.KeyEventHandler(this.m_DisplayImportReport_KeyDown);
			//
			// lblReadyToImportInstructions
			//
			resources.ApplyResources(this.lblReadyToImportInstructions, "lblReadyToImportInstructions");
			this.lblReadyToImportInstructions.Name = "lblReadyToImportInstructions";
			//
			// lblReadyToImport
			//
			resources.ApplyResources(this.lblReadyToImport, "lblReadyToImport");
			this.lblReadyToImport.Name = "lblReadyToImport";
			//
			// btnQuickFinish
			//
			resources.ApplyResources(this.btnQuickFinish, "btnQuickFinish");
			this.btnQuickFinish.Name = "btnQuickFinish";
			this.btnQuickFinish.Click += new System.EventHandler(this.btnQuickFinish_Click);
			//
			// btnSaveMapFile
			//
			resources.ApplyResources(this.btnSaveMapFile, "btnSaveMapFile");
			this.btnSaveMapFile.Name = "btnSaveMapFile";
			this.btnSaveMapFile.Click += new System.EventHandler(this.btnSaveMapFile_Click);
			//
			// LexImportWizard
			//
			resources.ApplyResources(this, "$this");
			this.Controls.Add(this.btnSaveMapFile);
			this.Controls.Add(this.btnQuickFinish);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
			this.Name = "LexImportWizard";
			this.ShowInTaskbar = false;
			this.StepNames = new string[] {
		resources.GetString("$this.StepNames"),
		resources.GetString("$this.StepNames1"),
		resources.GetString("$this.StepNames2"),
		resources.GetString("$this.StepNames3"),
		resources.GetString("$this.StepNames4"),
		resources.GetString("$this.StepNames5"),
		resources.GetString("$this.StepNames6"),
		resources.GetString("$this.StepNames7")};
			this.StepPageCount = 8;
			this.Load += new System.EventHandler(this.LexImportWizard_Load);
			this.Closing += new System.ComponentModel.CancelEventHandler(this.LexImportWizard_Closing);
			this.Controls.SetChildIndex(this.btnQuickFinish, 0);
			this.Controls.SetChildIndex(this.panSteps, 0);
			this.Controls.SetChildIndex(this.tabSteps, 0);
			this.Controls.SetChildIndex(this.lblSteps, 0);
			this.Controls.SetChildIndex(this.m_btnNext, 0);
			this.Controls.SetChildIndex(this.m_btnCancel, 0);
			this.Controls.SetChildIndex(this.m_btnBack, 0);
			this.Controls.SetChildIndex(this.m_btnHelp, 0);
			this.Controls.SetChildIndex(this.btnSaveMapFile, 0);
			this.tabSteps.ResumeLayout(false);
			this.tabPage1.ResumeLayout(false);
			this.tabPage2.ResumeLayout(false);
			this.tabPage2.PerformLayout();
			this.tabPage3.ResumeLayout(false);
			this.tabPage4.ResumeLayout(false);
			this.tabPage6.ResumeLayout(false);
			this.tabPage5.ResumeLayout(false);
			this.tabPage7.ResumeLayout(false);
			this.tabPage8.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 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(SFFileListBuilder));
			System.Windows.Forms.ColumnHeader columnHeader1;
			System.Windows.Forms.ColumnHeader columnHeader2;
			System.Windows.Forms.ColumnHeader columnHeader3;
			System.Windows.Forms.Label label1;
			System.Windows.Forms.ColumnHeader columnHeader4;
			System.Windows.Forms.ColumnHeader columnHeader5;
			System.Windows.Forms.ColumnHeader columnHeader7;
			System.Windows.Forms.Label label2;
			System.Windows.Forms.ColumnHeader columnHeader8;
			System.Windows.Forms.ColumnHeader columnHeader6;
			System.Windows.Forms.ColumnHeader columnHeader9;
			System.Windows.Forms.Label label3;
			this.tabFileGroups = new System.Windows.Forms.TabControl();
			this.tabScripture = new System.Windows.Forms.TabPage();
			this.scrFileList = new SIL.FieldWorks.Common.Controls.FwListView();
			this.btnRemoveScr = new System.Windows.Forms.Button();
			this.btnAddScr = new System.Windows.Forms.Button();
			this.tabBackTranslation = new System.Windows.Forms.TabPage();
			this.btnRemoveBT = new System.Windows.Forms.Button();
			this.btnAddBT = new System.Windows.Forms.Button();
			this.btFileList = new SIL.FieldWorks.Common.Controls.FwListView();
			this.cboShowBtWritingSystem = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.lblBtShowWritingSystems = new System.Windows.Forms.Label();
			this.tabNotes = new System.Windows.Forms.TabPage();
			this.cboShowNotesWritingSystem = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.btnRemoveNotes = new System.Windows.Forms.Button();
			this.btnAddNotes = new System.Windows.Forms.Button();
			this.notesFileList = new SIL.FieldWorks.Common.Controls.FwListView();
			this.cboShowNoteTypes = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			columnHeader1 = new System.Windows.Forms.ColumnHeader();
			columnHeader2 = new System.Windows.Forms.ColumnHeader();
			columnHeader3 = new System.Windows.Forms.ColumnHeader();
			label1 = new System.Windows.Forms.Label();
			columnHeader4 = new System.Windows.Forms.ColumnHeader();
			columnHeader5 = new System.Windows.Forms.ColumnHeader();
			columnHeader7 = new System.Windows.Forms.ColumnHeader();
			label2 = new System.Windows.Forms.Label();
			columnHeader8 = new System.Windows.Forms.ColumnHeader();
			columnHeader6 = new System.Windows.Forms.ColumnHeader();
			columnHeader9 = new System.Windows.Forms.ColumnHeader();
			label3 = new System.Windows.Forms.Label();
			this.tabFileGroups.SuspendLayout();
			this.tabScripture.SuspendLayout();
			this.tabBackTranslation.SuspendLayout();
			this.tabNotes.SuspendLayout();
			this.SuspendLayout();
			//
			// tabFileGroups
			//
			this.tabFileGroups.Controls.Add(this.tabScripture);
			this.tabFileGroups.Controls.Add(this.tabBackTranslation);
			this.tabFileGroups.Controls.Add(this.tabNotes);
			resources.ApplyResources(this.tabFileGroups, "tabFileGroups");
			this.tabFileGroups.Name = "tabFileGroups";
			this.tabFileGroups.SelectedIndex = 0;
			this.tabFileGroups.SelectedIndexChanged += new System.EventHandler(this.tabFileGroups_SelectedIndexChanged);
			//
			// tabScripture
			//
			this.tabScripture.Controls.Add(this.scrFileList);
			this.tabScripture.Controls.Add(label1);
			this.tabScripture.Controls.Add(this.btnRemoveScr);
			this.tabScripture.Controls.Add(this.btnAddScr);
			resources.ApplyResources(this.tabScripture, "tabScripture");
			this.tabScripture.Name = "tabScripture";
			//
			// scrFileList
			//
			resources.ApplyResources(this.scrFileList, "scrFileList");
			this.scrFileList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			columnHeader1,
			columnHeader2,
			columnHeader3});
			this.scrFileList.FullRowSelect = true;
			this.scrFileList.HideSelection = false;
			this.scrFileList.Name = "scrFileList";
			this.scrFileList.OwnerDraw = true;
			this.scrFileList.UseCompatibleStateImageBehavior = false;
			this.scrFileList.View = System.Windows.Forms.View.Details;
			this.scrFileList.SelectedIndexChanged += new System.EventHandler(this.fwlv_SelectedIndexChanged);
			this.scrFileList.DrawSubItem += new System.Windows.Forms.DrawListViewSubItemEventHandler(this.fwlv_DrawSubItem);
			//
			// columnHeader1
			//
			resources.ApplyResources(columnHeader1, "columnHeader1");
			//
			// columnHeader2
			//
			resources.ApplyResources(columnHeader2, "columnHeader2");
			//
			// columnHeader3
			//
			resources.ApplyResources(columnHeader3, "columnHeader3");
			//
			// label1
			//
			resources.ApplyResources(label1, "label1");
			label1.Name = "label1";
			//
			// btnRemoveScr
			//
			resources.ApplyResources(this.btnRemoveScr, "btnRemoveScr");
			this.btnRemoveScr.Name = "btnRemoveScr";
			this.btnRemoveScr.Click += new System.EventHandler(this.btnRemove_Click);
			//
			// btnAddScr
			//
			resources.ApplyResources(this.btnAddScr, "btnAddScr");
			this.btnAddScr.Name = "btnAddScr";
			this.btnAddScr.Click += new System.EventHandler(this.btnAdd_Click);
			//
			// tabBackTranslation
			//
			this.tabBackTranslation.Controls.Add(this.btnRemoveBT);
			this.tabBackTranslation.Controls.Add(this.btnAddBT);
			this.tabBackTranslation.Controls.Add(this.btFileList);
			this.tabBackTranslation.Controls.Add(this.cboShowBtWritingSystem);
			this.tabBackTranslation.Controls.Add(this.lblBtShowWritingSystems);
			this.tabBackTranslation.Controls.Add(label2);
			resources.ApplyResources(this.tabBackTranslation, "tabBackTranslation");
			this.tabBackTranslation.Name = "tabBackTranslation";
			//
			// btnRemoveBT
			//
			resources.ApplyResources(this.btnRemoveBT, "btnRemoveBT");
			this.btnRemoveBT.Name = "btnRemoveBT";
			this.btnRemoveBT.Click += new System.EventHandler(this.btnRemove_Click);
			//
			// btnAddBT
			//
			resources.ApplyResources(this.btnAddBT, "btnAddBT");
			this.btnAddBT.Name = "btnAddBT";
			this.btnAddBT.Click += new System.EventHandler(this.btnAdd_Click);
			//
			// btFileList
			//
			resources.ApplyResources(this.btFileList, "btFileList");
			this.btFileList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			columnHeader4,
			columnHeader5,
			columnHeader7});
			this.btFileList.FullRowSelect = true;
			this.btFileList.HideSelection = false;
			this.btFileList.Name = "btFileList";
			this.btFileList.OwnerDraw = true;
			this.btFileList.UseCompatibleStateImageBehavior = false;
			this.btFileList.View = System.Windows.Forms.View.Details;
			this.btFileList.SelectedIndexChanged += new System.EventHandler(this.fwlv_SelectedIndexChanged);
			this.btFileList.DrawSubItem += new System.Windows.Forms.DrawListViewSubItemEventHandler(this.fwlv_DrawSubItem);
			//
			// columnHeader4
			//
			resources.ApplyResources(columnHeader4, "columnHeader4");
			//
			// columnHeader5
			//
			resources.ApplyResources(columnHeader5, "columnHeader5");
			//
			// columnHeader7
			//
			resources.ApplyResources(columnHeader7, "columnHeader7");
			//
			// cboShowBtWritingSystem
			//
			resources.ApplyResources(this.cboShowBtWritingSystem, "cboShowBtWritingSystem");
			this.cboShowBtWritingSystem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboShowBtWritingSystem.Name = "cboShowBtWritingSystem";
			this.cboShowBtWritingSystem.SelectedIndexChanged += new System.EventHandler(this.cboShowWritingSystem_SelectedIndexChanged);
			//
			// lblBtShowWritingSystems
			//
			resources.ApplyResources(this.lblBtShowWritingSystems, "lblBtShowWritingSystems");
			this.lblBtShowWritingSystems.Name = "lblBtShowWritingSystems";
			//
			// label2
			//
			resources.ApplyResources(label2, "label2");
			label2.Name = "label2";
			//
			// tabNotes
			//
			this.tabNotes.Controls.Add(this.cboShowNotesWritingSystem);
			this.tabNotes.Controls.Add(this.btnRemoveNotes);
			this.tabNotes.Controls.Add(this.btnAddNotes);
			this.tabNotes.Controls.Add(this.notesFileList);
			this.tabNotes.Controls.Add(this.cboShowNoteTypes);
			this.tabNotes.Controls.Add(label3);
			resources.ApplyResources(this.tabNotes, "tabNotes");
			this.tabNotes.Name = "tabNotes";
			//
			// cboShowNotesWritingSystem
			//
			resources.ApplyResources(this.cboShowNotesWritingSystem, "cboShowNotesWritingSystem");
			this.cboShowNotesWritingSystem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboShowNotesWritingSystem.Name = "cboShowNotesWritingSystem";
			this.cboShowNotesWritingSystem.SelectedIndexChanged += new System.EventHandler(this.cboShowWritingSystem_SelectedIndexChanged);
			//
			// btnRemoveNotes
			//
			resources.ApplyResources(this.btnRemoveNotes, "btnRemoveNotes");
			this.btnRemoveNotes.Name = "btnRemoveNotes";
			this.btnRemoveNotes.Click += new System.EventHandler(this.btnRemove_Click);
			//
			// btnAddNotes
			//
			resources.ApplyResources(this.btnAddNotes, "btnAddNotes");
			this.btnAddNotes.Name = "btnAddNotes";
			this.btnAddNotes.Click += new System.EventHandler(this.btnAdd_Click);
			//
			// notesFileList
			//
			resources.ApplyResources(this.notesFileList, "notesFileList");
			this.notesFileList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			columnHeader8,
			columnHeader6,
			columnHeader9});
			this.notesFileList.FullRowSelect = true;
			this.notesFileList.HideSelection = false;
			this.notesFileList.Name = "notesFileList";
			this.notesFileList.OwnerDraw = true;
			this.notesFileList.UseCompatibleStateImageBehavior = false;
			this.notesFileList.View = System.Windows.Forms.View.Details;
			this.notesFileList.SelectedIndexChanged += new System.EventHandler(this.fwlv_SelectedIndexChanged);
			this.notesFileList.DrawSubItem += new System.Windows.Forms.DrawListViewSubItemEventHandler(this.fwlv_DrawSubItem);
			//
			// columnHeader8
			//
			resources.ApplyResources(columnHeader8, "columnHeader8");
			//
			// columnHeader6
			//
			resources.ApplyResources(columnHeader6, "columnHeader6");
			//
			// columnHeader9
			//
			resources.ApplyResources(columnHeader9, "columnHeader9");
			//
			// cboShowNoteTypes
			//
			resources.ApplyResources(this.cboShowNoteTypes, "cboShowNoteTypes");
			this.cboShowNoteTypes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboShowNoteTypes.Name = "cboShowNoteTypes";
			this.cboShowNoteTypes.SelectedIndexChanged += new System.EventHandler(this.cboShowNoteTypes_SelectedIndexChanged);
			//
			// label3
			//
			resources.ApplyResources(label3, "label3");
			label3.Name = "label3";
			//
			// SFFileListBuilder
			//
			this.Controls.Add(this.tabFileGroups);
			this.Name = "SFFileListBuilder";
			resources.ApplyResources(this, "$this");
			this.tabFileGroups.ResumeLayout(false);
			this.tabScripture.ResumeLayout(false);
			this.tabBackTranslation.ResumeLayout(false);
			this.tabBackTranslation.PerformLayout();
			this.tabNotes.ResumeLayout(false);
			this.tabNotes.PerformLayout();
			this.ResumeLayout(false);

		}
Ejemplo n.º 15
0
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InsertEntryDlg));
			this.m_btnOK = new System.Windows.Forms.Button();
			this.m_btnCancel = new System.Windows.Forms.Button();
			this.m_formLabel = new System.Windows.Forms.Label();
			this.m_tbLexicalForm = new SIL.FieldWorks.Common.Widgets.FwTextBox();
			this.m_tbGloss = new SIL.FieldWorks.Common.Widgets.FwTextBox();
			this.m_btnHelp = new System.Windows.Forms.Button();
			this.m_morphTypeLabel = new System.Windows.Forms.Label();
			this.m_cbMorphType = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_cbComplexFormType = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_matchingEntriesGroupBox = new System.Windows.Forms.GroupBox();
			this.m_labelArrow = new System.Windows.Forms.Label();
			this.m_imageList = new System.Windows.Forms.ImageList(this.components);
			this.m_linkSimilarEntry = new System.Windows.Forms.LinkLabel();
			this.m_matchingObjectsBrowser = new SIL.FieldWorks.Common.Controls.MatchingObjectsBrowser();
			this.m_toolTipSlotCombo = new System.Windows.Forms.ToolTip(this.components);
			this.m_msaGroupBox = new SIL.FieldWorks.LexText.Controls.MSAGroupBox();
			this.m_propsGroupBox = new System.Windows.Forms.GroupBox();
			this.m_complexTypeLabel = new System.Windows.Forms.Label();
			this.m_glossGroupBox = new System.Windows.Forms.GroupBox();
			this.m_lnkAssistant = new System.Windows.Forms.LinkLabel();
			((System.ComponentModel.ISupportInitialize)(this.m_tbLexicalForm)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.m_tbGloss)).BeginInit();
			this.m_matchingEntriesGroupBox.SuspendLayout();
			this.m_propsGroupBox.SuspendLayout();
			this.m_glossGroupBox.SuspendLayout();
			this.SuspendLayout();
			//
			// m_btnOK
			//
			resources.ApplyResources(this.m_btnOK, "m_btnOK");
			this.m_btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.m_btnOK.Name = "m_btnOK";
			//
			// m_btnCancel
			//
			resources.ApplyResources(this.m_btnCancel, "m_btnCancel");
			this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.m_btnCancel.Name = "m_btnCancel";
			//
			// m_formLabel
			//
			resources.ApplyResources(this.m_formLabel, "m_formLabel");
			this.m_formLabel.Name = "m_formLabel";
			//
			// m_tbLexicalForm
			//
			this.m_tbLexicalForm.AdjustStringHeight = true;
			this.m_tbLexicalForm.BackColor = System.Drawing.SystemColors.Window;
			this.m_tbLexicalForm.controlID = null;
			resources.ApplyResources(this.m_tbLexicalForm, "m_tbLexicalForm");
			this.m_tbLexicalForm.HasBorder = true;
			this.m_tbLexicalForm.Name = "m_tbLexicalForm";
			this.m_tbLexicalForm.SelectionLength = 0;
			this.m_tbLexicalForm.SelectionStart = 0;
			this.m_tbLexicalForm.TextChanged += new System.EventHandler(this.tbLexicalForm_TextChanged);
			//
			// m_tbGloss
			//
			this.m_tbGloss.AdjustStringHeight = true;
			this.m_tbGloss.BackColor = System.Drawing.SystemColors.Window;
			this.m_tbGloss.controlID = null;
			resources.ApplyResources(this.m_tbGloss, "m_tbGloss");
			this.m_tbGloss.HasBorder = true;
			this.m_tbGloss.Name = "m_tbGloss";
			this.m_tbGloss.SelectionLength = 0;
			this.m_tbGloss.SelectionStart = 0;
			this.m_tbGloss.TextChanged += new System.EventHandler(this.tbGloss_TextChanged);
			//
			// m_btnHelp
			//
			resources.ApplyResources(this.m_btnHelp, "m_btnHelp");
			this.m_btnHelp.Name = "m_btnHelp";
			this.m_btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
			//
			// m_morphTypeLabel
			//
			resources.ApplyResources(this.m_morphTypeLabel, "m_morphTypeLabel");
			this.m_morphTypeLabel.Name = "m_morphTypeLabel";
			//
			// m_cbMorphType
			//
			this.m_cbMorphType.AllowSpaceInEditBox = false;
			this.m_cbMorphType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_cbMorphType, "m_cbMorphType");
			this.m_cbMorphType.Name = "m_cbMorphType";
			this.m_cbMorphType.SelectedIndexChanged += new System.EventHandler(this.cbMorphType_SelectedIndexChanged);
			//
			// m_cbComplexFormType
			//
			this.m_cbComplexFormType.AllowSpaceInEditBox = false;
			this.m_cbComplexFormType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_cbComplexFormType, "m_cbComplexFormType");
			this.m_cbComplexFormType.Name = "m_cbComplexFormType";
			this.m_cbComplexFormType.SelectedIndexChanged += new System.EventHandler(this.cbComplexFormType_SelectedIndexChanged);
			//
			// m_matchingEntriesGroupBox
			//
			resources.ApplyResources(this.m_matchingEntriesGroupBox, "m_matchingEntriesGroupBox");
			this.m_matchingEntriesGroupBox.Controls.Add(this.m_labelArrow);
			this.m_matchingEntriesGroupBox.Controls.Add(this.m_linkSimilarEntry);
			this.m_matchingEntriesGroupBox.Controls.Add(this.m_matchingObjectsBrowser);
			this.m_matchingEntriesGroupBox.Name = "m_matchingEntriesGroupBox";
			this.m_matchingEntriesGroupBox.TabStop = false;
			//
			// m_labelArrow
			//
			resources.ApplyResources(this.m_labelArrow, "m_labelArrow");
			this.m_labelArrow.ImageList = this.m_imageList;
			this.m_labelArrow.Name = "m_labelArrow";
			this.m_labelArrow.Click += new System.EventHandler(this.btnSimilarEntry_Click);
			//
			// m_imageList
			//
			this.m_imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_imageList.ImageStream")));
			this.m_imageList.TransparentColor = System.Drawing.Color.Fuchsia;
			this.m_imageList.Images.SetKeyName(0, "GoToArrow.bmp");
			//
			// m_linkSimilarEntry
			//
			resources.ApplyResources(this.m_linkSimilarEntry, "m_linkSimilarEntry");
			this.m_linkSimilarEntry.Name = "m_linkSimilarEntry";
			this.m_linkSimilarEntry.TabStop = true;
			this.m_linkSimilarEntry.Click += new System.EventHandler(this.btnSimilarEntry_Click);
			//
			// m_matchingObjectsBrowser
			//
			resources.ApplyResources(this.m_matchingObjectsBrowser, "m_matchingObjectsBrowser");
			this.m_matchingObjectsBrowser.Name = "m_matchingObjectsBrowser";
			this.m_matchingObjectsBrowser.TabStop = false;
			this.m_matchingObjectsBrowser.SelectionChanged += new FwSelectionChangedEventHandler(this.m_matchingObjectsBrowser_SelectionChanged);
			this.m_matchingObjectsBrowser.SelectionMade += new FwSelectionChangedEventHandler(this.m_matchingObjectsBrowser_SelectionMade);
			this.m_matchingObjectsBrowser.SearchCompleted += new EventHandler(this.m_matchingObjectsBrowser_SearchCompleted);
			this.m_matchingObjectsBrowser.ColumnsChanged += new EventHandler(this.m_matchingObjectsBrowser_ColumnsChanged);
			//
			// m_toolTipSlotCombo
			//
			this.m_toolTipSlotCombo.AutoPopDelay = 5000;
			this.m_toolTipSlotCombo.InitialDelay = 250;
			this.m_toolTipSlotCombo.ReshowDelay = 100;
			this.m_toolTipSlotCombo.ShowAlways = true;
			//
			// m_msaGroupBox
			//
			resources.ApplyResources(this.m_msaGroupBox, "m_msaGroupBox");
			this.m_msaGroupBox.MSAType = SIL.FieldWorks.FDO.MsaType.kNotSet;
			this.m_msaGroupBox.Name = "m_msaGroupBox";
			this.m_msaGroupBox.Slot = null;
			//
			// m_propsGroupBox
			//
			this.m_propsGroupBox.Controls.Add(this.m_complexTypeLabel);
			this.m_propsGroupBox.Controls.Add(this.m_morphTypeLabel);
			this.m_propsGroupBox.Controls.Add(this.m_cbMorphType);
			this.m_propsGroupBox.Controls.Add(this.m_cbComplexFormType);
			this.m_propsGroupBox.Controls.Add(this.m_tbLexicalForm);
			this.m_propsGroupBox.Controls.Add(this.m_formLabel);
			resources.ApplyResources(this.m_propsGroupBox, "m_propsGroupBox");
			this.m_propsGroupBox.Name = "m_propsGroupBox";
			this.m_propsGroupBox.TabStop = false;
			//
			// m_complexTypeLabel
			//
			resources.ApplyResources(this.m_complexTypeLabel, "m_complexTypeLabel");
			this.m_complexTypeLabel.Name = "m_complexTypeLabel";
			//
			// m_glossGroupBox
			//
			this.m_glossGroupBox.Controls.Add(this.m_lnkAssistant);
			this.m_glossGroupBox.Controls.Add(this.m_tbGloss);
			resources.ApplyResources(this.m_glossGroupBox, "m_glossGroupBox");
			this.m_glossGroupBox.Name = "m_glossGroupBox";
			this.m_glossGroupBox.TabStop = false;
			//
			// m_lnkAssistant
			//
			resources.ApplyResources(this.m_lnkAssistant, "m_lnkAssistant");
			this.m_lnkAssistant.Name = "m_lnkAssistant";
			this.m_lnkAssistant.TabStop = true;
			this.m_lnkAssistant.VisitedLinkColor = System.Drawing.Color.Blue;
			this.m_lnkAssistant.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkAssistant_LinkClicked);
			//
			// InsertEntryDlg
			//
			this.AcceptButton = this.m_btnOK;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.m_btnCancel;
			this.Controls.Add(this.m_glossGroupBox);
			this.Controls.Add(this.m_propsGroupBox);
			this.Controls.Add(this.m_msaGroupBox);
			this.Controls.Add(this.m_matchingEntriesGroupBox);
			this.Controls.Add(this.m_btnHelp);
			this.Controls.Add(this.m_btnCancel);
			this.Controls.Add(this.m_btnOK);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "InsertEntryDlg";
			this.ShowInTaskbar = false;
			this.Load += new System.EventHandler(this.InsertEntryDlg_Load);
			this.Closed += new System.EventHandler(this.InsertEntryDlg_Closed);
			this.Closing += new System.ComponentModel.CancelEventHandler(this.InsertEntryDlg_Closing);
			((System.ComponentModel.ISupportInitialize)(this.m_tbLexicalForm)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_tbGloss)).EndInit();
			this.m_matchingEntriesGroupBox.ResumeLayout(false);
			this.m_matchingEntriesGroupBox.PerformLayout();
			this.m_propsGroupBox.ResumeLayout(false);
			this.m_glossGroupBox.ResumeLayout(false);
			this.m_glossGroupBox.PerformLayout();
			this.ResumeLayout(false);

		}
Ejemplo n.º 16
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.Windows.Forms.GroupBox groupBox1;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ToolsOptionsDialog));
			System.Windows.Forms.GroupBox groupBox3;
			System.Windows.Forms.Label lbMeasurement;
			System.Windows.Forms.Label lblStyleNote;
			System.Windows.Forms.Label lblShowStyles;
			System.Windows.Forms.Label lblStyleLevel;
			System.Windows.Forms.Button m_btnBrowse;
			System.Windows.Forms.Button btnCancel;
			System.Windows.Forms.Button btnHelp;
			System.Windows.Forms.GroupBox groupBox2;
			System.Windows.Forms.Label label1;
			this.m_chkSynchFootnoteScroll = new System.Windows.Forms.CheckBox();
			this.m_chkShowFormatMarks = new System.Windows.Forms.CheckBox();
			this.m_chkMarkerlessFootnoteIcons = new System.Windows.Forms.CheckBox();
			this.m_chkPromptEmptyParas = new System.Windows.Forms.CheckBox();
			this.m_lblNoTestFeatures = new System.Windows.Forms.Label();
			this.m_cboExperimentalFeatures = new System.Windows.Forms.CheckedListBox();
			this.labelBackupDir = new System.Windows.Forms.Label();
			this.btnOK = new System.Windows.Forms.Button();
			this.tabOptions = new System.Windows.Forms.TabControl();
			this.tabPageView = new System.Windows.Forms.TabPage();
			this.tabPageGeneral = new System.Windows.Forms.TabPage();
			this.grpPastingWs = new System.Windows.Forms.GroupBox();
			this.m_rdoUseOnlyWSsInThisProj = new System.Windows.Forms.RadioButton();
			this.m_rdoPromptForNewWs = new System.Windows.Forms.RadioButton();
			this.label3 = new System.Windows.Forms.Label();
			this.m_chkStartLibronixWithTE = new System.Windows.Forms.CheckBox();
			this.m_chkDisplayBackupReminder = new System.Windows.Forms.CheckBox();
			this.tabPageStyles = new System.Windows.Forms.TabPage();
			this.rdoCustomList = new System.Windows.Forms.RadioButton();
			this.rdoAllStyles = new System.Windows.Forms.RadioButton();
			this.rdoBasicStyles = new System.Windows.Forms.RadioButton();
			this.grpCustom = new System.Windows.Forms.GroupBox();
			this.cboStyleLevel = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.chkShowUserDefined = new System.Windows.Forms.CheckBox();
			this.tabPageInterface = new System.Windows.Forms.TabPage();
			this.label2 = new System.Windows.Forms.Label();
			this.m_userInterfaceChooser = new SIL.FieldWorks.Common.Widgets.UserInterfaceChooser();
			this.m_cboMeasurement = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.tabPageAdvanced = new System.Windows.Forms.TabPage();
			this.m_textBoxBackupPath = new System.Windows.Forms.TextBox();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			groupBox1 = new System.Windows.Forms.GroupBox();
			groupBox3 = new System.Windows.Forms.GroupBox();
			lbMeasurement = new System.Windows.Forms.Label();
			lblStyleNote = new System.Windows.Forms.Label();
			lblShowStyles = new System.Windows.Forms.Label();
			lblStyleLevel = new System.Windows.Forms.Label();
			m_btnBrowse = new System.Windows.Forms.Button();
			btnCancel = new System.Windows.Forms.Button();
			btnHelp = new System.Windows.Forms.Button();
			groupBox2 = new System.Windows.Forms.GroupBox();
			label1 = new System.Windows.Forms.Label();
			groupBox1.SuspendLayout();
			groupBox3.SuspendLayout();
			groupBox2.SuspendLayout();
			this.tabOptions.SuspendLayout();
			this.tabPageView.SuspendLayout();
			this.tabPageGeneral.SuspendLayout();
			this.grpPastingWs.SuspendLayout();
			this.tabPageStyles.SuspendLayout();
			this.grpCustom.SuspendLayout();
			this.tabPageInterface.SuspendLayout();
			this.tabPageAdvanced.SuspendLayout();
			this.SuspendLayout();
			//
			// groupBox1
			//
			groupBox1.Controls.Add(this.m_chkSynchFootnoteScroll);
			resources.ApplyResources(groupBox1, "groupBox1");
			groupBox1.Name = "groupBox1";
			groupBox1.TabStop = false;
			//
			// m_chkSynchFootnoteScroll
			//
			resources.ApplyResources(this.m_chkSynchFootnoteScroll, "m_chkSynchFootnoteScroll");
			this.m_chkSynchFootnoteScroll.Name = "m_chkSynchFootnoteScroll";
			//
			// groupBox3
			//
			groupBox3.Controls.Add(this.m_chkShowFormatMarks);
			groupBox3.Controls.Add(this.m_chkMarkerlessFootnoteIcons);
			groupBox3.Controls.Add(this.m_chkPromptEmptyParas);
			resources.ApplyResources(groupBox3, "groupBox3");
			groupBox3.Name = "groupBox3";
			groupBox3.TabStop = false;
			//
			// m_chkShowFormatMarks
			//
			resources.ApplyResources(this.m_chkShowFormatMarks, "m_chkShowFormatMarks");
			this.m_chkShowFormatMarks.Name = "m_chkShowFormatMarks";
			//
			// m_chkMarkerlessFootnoteIcons
			//
			resources.ApplyResources(this.m_chkMarkerlessFootnoteIcons, "m_chkMarkerlessFootnoteIcons");
			this.m_chkMarkerlessFootnoteIcons.Name = "m_chkMarkerlessFootnoteIcons";
			//
			// m_chkPromptEmptyParas
			//
			resources.ApplyResources(this.m_chkPromptEmptyParas, "m_chkPromptEmptyParas");
			this.m_chkPromptEmptyParas.Name = "m_chkPromptEmptyParas";
			//
			// lbMeasurement
			//
			resources.ApplyResources(lbMeasurement, "lbMeasurement");
			lbMeasurement.Name = "lbMeasurement";
			//
			// lblStyleNote
			//
			resources.ApplyResources(lblStyleNote, "lblStyleNote");
			lblStyleNote.Name = "lblStyleNote";
			//
			// lblShowStyles
			//
			resources.ApplyResources(lblShowStyles, "lblShowStyles");
			lblShowStyles.Name = "lblShowStyles";
			//
			// lblStyleLevel
			//
			resources.ApplyResources(lblStyleLevel, "lblStyleLevel");
			lblStyleLevel.Name = "lblStyleLevel";
			//
			// m_btnBrowse
			//
			resources.ApplyResources(m_btnBrowse, "m_btnBrowse");
			m_btnBrowse.Name = "m_btnBrowse";
			m_btnBrowse.Click += new System.EventHandler(this.m_btnBrowse_Click);
			//
			// btnCancel
			//
			resources.ApplyResources(btnCancel, "btnCancel");
			btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			btnCancel.Name = "btnCancel";
			//
			// btnHelp
			//
			resources.ApplyResources(btnHelp, "btnHelp");
			btnHelp.Name = "btnHelp";
			btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
			//
			// groupBox2
			//
			groupBox2.Controls.Add(this.m_lblNoTestFeatures);
			groupBox2.Controls.Add(this.m_cboExperimentalFeatures);
			resources.ApplyResources(groupBox2, "groupBox2");
			groupBox2.Name = "groupBox2";
			groupBox2.TabStop = false;
			//
			// m_lblNoTestFeatures
			//
			resources.ApplyResources(this.m_lblNoTestFeatures, "m_lblNoTestFeatures");
			this.m_lblNoTestFeatures.Name = "m_lblNoTestFeatures";
			//
			// m_cboExperimentalFeatures
			//
			this.m_cboExperimentalFeatures.BackColor = System.Drawing.SystemColors.Window;
			this.m_cboExperimentalFeatures.FormattingEnabled = true;
			this.m_cboExperimentalFeatures.Items.AddRange(new object[] {
			resources.GetString("m_cboExperimentalFeatures.Items"),
			resources.GetString("m_cboExperimentalFeatures.Items1"),
			resources.GetString("m_cboExperimentalFeatures.Items2")});
			resources.ApplyResources(this.m_cboExperimentalFeatures, "m_cboExperimentalFeatures");
			this.m_cboExperimentalFeatures.Name = "m_cboExperimentalFeatures";
			//
			// label1
			//
			resources.ApplyResources(label1, "label1");
			label1.Name = "label1";
			//
			// labelBackupDir
			//
			resources.ApplyResources(this.labelBackupDir, "labelBackupDir");
			this.labelBackupDir.Name = "labelBackupDir";
			//
			// 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);
			//
			// tabOptions
			//
			this.tabOptions.Controls.Add(this.tabPageView);
			this.tabOptions.Controls.Add(this.tabPageGeneral);
			this.tabOptions.Controls.Add(this.tabPageStyles);
			this.tabOptions.Controls.Add(this.tabPageInterface);
			this.tabOptions.Controls.Add(this.tabPageAdvanced);
			this.tabOptions.HotTrack = true;
			resources.ApplyResources(this.tabOptions, "tabOptions");
			this.tabOptions.Name = "tabOptions";
			this.tabOptions.SelectedIndex = 0;
			//
			// tabPageView
			//
			this.tabPageView.Controls.Add(groupBox1);
			this.tabPageView.Controls.Add(groupBox3);
			resources.ApplyResources(this.tabPageView, "tabPageView");
			this.tabPageView.Name = "tabPageView";
			this.tabPageView.UseVisualStyleBackColor = true;
			//
			// tabPageGeneral
			//
			this.tabPageGeneral.Controls.Add(this.grpPastingWs);
			this.tabPageGeneral.Controls.Add(this.m_chkStartLibronixWithTE);
			this.tabPageGeneral.Controls.Add(this.m_chkDisplayBackupReminder);
			resources.ApplyResources(this.tabPageGeneral, "tabPageGeneral");
			this.tabPageGeneral.Name = "tabPageGeneral";
			this.tabPageGeneral.UseVisualStyleBackColor = true;
			//
			// grpPastingWs
			//
			this.grpPastingWs.Controls.Add(this.m_rdoUseOnlyWSsInThisProj);
			this.grpPastingWs.Controls.Add(this.m_rdoPromptForNewWs);
			this.grpPastingWs.Controls.Add(this.label3);
			resources.ApplyResources(this.grpPastingWs, "grpPastingWs");
			this.grpPastingWs.Name = "grpPastingWs";
			this.grpPastingWs.TabStop = false;
			//
			// m_rdoUseOnlyWSsInThisProj
			//
			resources.ApplyResources(this.m_rdoUseOnlyWSsInThisProj, "m_rdoUseOnlyWSsInThisProj");
			this.m_rdoUseOnlyWSsInThisProj.Name = "m_rdoUseOnlyWSsInThisProj";
			this.m_rdoUseOnlyWSsInThisProj.UseVisualStyleBackColor = true;
			//
			// m_rdoPromptForNewWs
			//
			resources.ApplyResources(this.m_rdoPromptForNewWs, "m_rdoPromptForNewWs");
			this.m_rdoPromptForNewWs.Checked = true;
			this.m_rdoPromptForNewWs.Name = "m_rdoPromptForNewWs";
			this.m_rdoPromptForNewWs.TabStop = true;
			this.m_rdoPromptForNewWs.UseVisualStyleBackColor = true;
			//
			// label3
			//
			this.label3.AllowDrop = true;
			resources.ApplyResources(this.label3, "label3");
			this.label3.Name = "label3";
			//
			// m_chkStartLibronixWithTE
			//
			resources.ApplyResources(this.m_chkStartLibronixWithTE, "m_chkStartLibronixWithTE");
			this.m_chkStartLibronixWithTE.Name = "m_chkStartLibronixWithTE";
			//
			// m_chkDisplayBackupReminder
			//
			resources.ApplyResources(this.m_chkDisplayBackupReminder, "m_chkDisplayBackupReminder");
			this.m_chkDisplayBackupReminder.Name = "m_chkDisplayBackupReminder";
			//
			// tabPageStyles
			//
			this.tabPageStyles.Controls.Add(lblStyleNote);
			this.tabPageStyles.Controls.Add(this.rdoCustomList);
			this.tabPageStyles.Controls.Add(this.rdoAllStyles);
			this.tabPageStyles.Controls.Add(this.rdoBasicStyles);
			this.tabPageStyles.Controls.Add(lblShowStyles);
			this.tabPageStyles.Controls.Add(this.grpCustom);
			resources.ApplyResources(this.tabPageStyles, "tabPageStyles");
			this.tabPageStyles.Name = "tabPageStyles";
			this.tabPageStyles.UseVisualStyleBackColor = true;
			//
			// rdoCustomList
			//
			resources.ApplyResources(this.rdoCustomList, "rdoCustomList");
			this.rdoCustomList.Name = "rdoCustomList";
			this.rdoCustomList.CheckedChanged += new System.EventHandler(this.rdoCustomList_CheckedChanged);
			//
			// rdoAllStyles
			//
			resources.ApplyResources(this.rdoAllStyles, "rdoAllStyles");
			this.rdoAllStyles.Name = "rdoAllStyles";
			//
			// rdoBasicStyles
			//
			resources.ApplyResources(this.rdoBasicStyles, "rdoBasicStyles");
			this.rdoBasicStyles.Name = "rdoBasicStyles";
			//
			// grpCustom
			//
			this.grpCustom.Controls.Add(lblStyleLevel);
			this.grpCustom.Controls.Add(this.cboStyleLevel);
			this.grpCustom.Controls.Add(this.chkShowUserDefined);
			resources.ApplyResources(this.grpCustom, "grpCustom");
			this.grpCustom.Name = "grpCustom";
			this.grpCustom.TabStop = false;
			//
			// cboStyleLevel
			//
			this.cboStyleLevel.AllowSpaceInEditBox = false;
			this.cboStyleLevel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.cboStyleLevel, "cboStyleLevel");
			this.cboStyleLevel.Name = "cboStyleLevel";
			//
			// chkShowUserDefined
			//
			resources.ApplyResources(this.chkShowUserDefined, "chkShowUserDefined");
			this.chkShowUserDefined.Name = "chkShowUserDefined";
			//
			// tabPageInterface
			//
			this.tabPageInterface.Controls.Add(this.label2);
			this.tabPageInterface.Controls.Add(label1);
			this.tabPageInterface.Controls.Add(this.m_userInterfaceChooser);
			this.tabPageInterface.Controls.Add(lbMeasurement);
			this.tabPageInterface.Controls.Add(this.m_cboMeasurement);
			resources.ApplyResources(this.tabPageInterface, "tabPageInterface");
			this.tabPageInterface.Name = "tabPageInterface";
			this.tabPageInterface.UseVisualStyleBackColor = true;
			//
			// label2
			//
			resources.ApplyResources(this.label2, "label2");
			this.label2.Name = "label2";
			//
			// m_userInterfaceChooser
			//
			resources.ApplyResources(this.m_userInterfaceChooser, "m_userInterfaceChooser");
			this.m_userInterfaceChooser.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_userInterfaceChooser.FormattingEnabled = true;
			this.m_userInterfaceChooser.Name = "m_userInterfaceChooser";
			this.m_userInterfaceChooser.Sorted = true;
			//
			// m_cboMeasurement
			//
			this.m_cboMeasurement.AllowSpaceInEditBox = false;
			this.m_cboMeasurement.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_cboMeasurement, "m_cboMeasurement");
			this.m_cboMeasurement.Items.AddRange(new object[] {
			resources.GetString("m_cboMeasurement.Items"),
			resources.GetString("m_cboMeasurement.Items1"),
			resources.GetString("m_cboMeasurement.Items2")});
			this.m_cboMeasurement.Name = "m_cboMeasurement";
			//
			// tabPageAdvanced
			//
			this.tabPageAdvanced.Controls.Add(groupBox2);
			this.tabPageAdvanced.Controls.Add(m_btnBrowse);
			this.tabPageAdvanced.Controls.Add(this.m_textBoxBackupPath);
			this.tabPageAdvanced.Controls.Add(this.labelBackupDir);
			resources.ApplyResources(this.tabPageAdvanced, "tabPageAdvanced");
			this.tabPageAdvanced.Name = "tabPageAdvanced";
			this.tabPageAdvanced.UseVisualStyleBackColor = true;
			//
			// m_textBoxBackupPath
			//
			resources.ApplyResources(this.m_textBoxBackupPath, "m_textBoxBackupPath");
			this.m_textBoxBackupPath.Name = "m_textBoxBackupPath";
			//
			// ToolsOptionsDialog
			//
			this.AcceptButton = this.btnOK;
			resources.ApplyResources(this, "$this");
			this.CancelButton = btnCancel;
			this.Controls.Add(btnHelp);
			this.Controls.Add(btnCancel);
			this.Controls.Add(this.btnOK);
			this.Controls.Add(this.tabOptions);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "ToolsOptionsDialog";
			this.ShowInTaskbar = false;
			groupBox1.ResumeLayout(false);
			groupBox3.ResumeLayout(false);
			groupBox2.ResumeLayout(false);
			groupBox2.PerformLayout();
			this.tabOptions.ResumeLayout(false);
			this.tabPageView.ResumeLayout(false);
			this.tabPageGeneral.ResumeLayout(false);
			this.grpPastingWs.ResumeLayout(false);
			this.grpPastingWs.PerformLayout();
			this.tabPageStyles.ResumeLayout(false);
			this.tabPageStyles.PerformLayout();
			this.grpCustom.ResumeLayout(false);
			this.grpCustom.PerformLayout();
			this.tabPageInterface.ResumeLayout(false);
			this.tabPageInterface.PerformLayout();
			this.tabPageAdvanced.ResumeLayout(false);
			this.tabPageAdvanced.PerformLayout();
			this.ResumeLayout(false);

		}
Ejemplo n.º 17
0
		/// ------------------------------------------------------------------------------------
		/// <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.Label lblScheme;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FileNameSchemeCtrl));
			System.Windows.Forms.Label lblPrefix;
			System.Windows.Forms.Label lblSuffix;
			System.Windows.Forms.Label lblExtension;
			this.grpOptions = new System.Windows.Forms.GroupBox();
			this.grpTemplate = new System.Windows.Forms.GroupBox();
			this.txtSuffix = new System.Windows.Forms.TextBox();
			this.txtExtension = new System.Windows.Forms.TextBox();
			this.txtPrefix = new System.Windows.Forms.TextBox();
			this.cboScheme = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.lblExample = new System.Windows.Forms.Label();
			lblScheme = new System.Windows.Forms.Label();
			lblPrefix = new System.Windows.Forms.Label();
			lblSuffix = new System.Windows.Forms.Label();
			lblExtension = new System.Windows.Forms.Label();
			this.grpTemplate.SuspendLayout();
			this.SuspendLayout();
			//
			// lblScheme
			//
			resources.ApplyResources(lblScheme, "lblScheme");
			lblScheme.Name = "lblScheme";
			//
			// lblPrefix
			//
			resources.ApplyResources(lblPrefix, "lblPrefix");
			lblPrefix.Name = "lblPrefix";
			//
			// lblSuffix
			//
			resources.ApplyResources(lblSuffix, "lblSuffix");
			lblSuffix.Name = "lblSuffix";
			//
			// lblExtension
			//
			resources.ApplyResources(lblExtension, "lblExtension");
			lblExtension.Name = "lblExtension";
			//
			// grpOptions
			//
			resources.ApplyResources(this.grpOptions, "grpOptions");
			this.grpOptions.Name = "grpOptions";
			this.grpOptions.TabStop = false;
			//
			// grpTemplate
			//
			this.grpTemplate.Controls.Add(lblExtension);
			this.grpTemplate.Controls.Add(lblSuffix);
			this.grpTemplate.Controls.Add(this.txtSuffix);
			this.grpTemplate.Controls.Add(this.txtExtension);
			this.grpTemplate.Controls.Add(lblPrefix);
			this.grpTemplate.Controls.Add(lblScheme);
			this.grpTemplate.Controls.Add(this.txtPrefix);
			this.grpTemplate.Controls.Add(this.cboScheme);
			this.grpTemplate.Controls.Add(this.lblExample);
			resources.ApplyResources(this.grpTemplate, "grpTemplate");
			this.grpTemplate.Name = "grpTemplate";
			this.grpTemplate.TabStop = false;
			//
			// txtSuffix
			//
			resources.ApplyResources(this.txtSuffix, "txtSuffix");
			this.txtSuffix.Name = "txtSuffix";
			this.txtSuffix.TextChanged += new System.EventHandler(this.txtSuffix_TextChanged);
			this.txtSuffix.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSuffix_KeyPress);
			//
			// txtExtension
			//
			resources.ApplyResources(this.txtExtension, "txtExtension");
			this.txtExtension.Name = "txtExtension";
			this.txtExtension.TextChanged += new System.EventHandler(this.txtExtension_TextChanged);
			this.txtExtension.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtExtension_KeyPress);
			//
			// txtPrefix
			//
			resources.ApplyResources(this.txtPrefix, "txtPrefix");
			this.txtPrefix.Name = "txtPrefix";
			this.txtPrefix.TextChanged += new System.EventHandler(this.txtPrefix_TextChanged);
			this.txtPrefix.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPrefix_KeyPress);
			//
			// cboScheme
			//
			this.cboScheme.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.cboScheme, "cboScheme");
			this.cboScheme.Name = "cboScheme";
			this.cboScheme.SelectedIndexChanged += new System.EventHandler(this.cboScheme_SelectedIndexChanged);
			//
			// lblExample
			//
			resources.ApplyResources(this.lblExample, "lblExample");
			this.lblExample.Name = "lblExample";
			//
			// FileNameSchemeCtrl
			//
			this.Controls.Add(this.grpTemplate);
			this.Name = "FileNameSchemeCtrl";
			resources.ApplyResources(this, "$this");
			this.grpTemplate.ResumeLayout(false);
			this.grpTemplate.PerformLayout();
			this.ResumeLayout(false);

		}
Ejemplo n.º 18
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.Windows.Forms.Label lblLookup;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LanguageSetup));
			System.Windows.Forms.Label lblFindPattern;
			System.Windows.Forms.ColumnHeader hdrLanguageName;
			System.Windows.Forms.ColumnHeader hdrCountry;
			System.Windows.Forms.ColumnHeader hdrEthnologueCode;
			System.Windows.Forms.GroupBox grpCurrentLang;
			System.Windows.Forms.Label lblCurrentEthCode;
			System.Windows.Forms.Label lblCurrentLangName;
			System.Windows.Forms.Label lblOtherNames;
			System.Windows.Forms.Label lblInstructions1;
			System.Windows.Forms.Label lblInstructions2;
			System.Windows.Forms.HelpProvider helpProvider1;
			this.txtFindPattern = new System.Windows.Forms.TextBox();
			this.btnFind = new System.Windows.Forms.Button();
			this.lvFindResult = new System.Windows.Forms.ListView();
			this.lblCurrentEthCodeValue = new System.Windows.Forms.Label();
			this.txtCurrentLangName = new System.Windows.Forms.TextBox();
			this.lblOtherNamesList = new System.Windows.Forms.Label();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.cboLookup = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			lblLookup = new System.Windows.Forms.Label();
			lblFindPattern = new System.Windows.Forms.Label();
			hdrLanguageName = new System.Windows.Forms.ColumnHeader();
			hdrCountry = new System.Windows.Forms.ColumnHeader();
			hdrEthnologueCode = new System.Windows.Forms.ColumnHeader();
			grpCurrentLang = new System.Windows.Forms.GroupBox();
			lblCurrentEthCode = new System.Windows.Forms.Label();
			lblCurrentLangName = new System.Windows.Forms.Label();
			lblOtherNames = new System.Windows.Forms.Label();
			lblInstructions1 = new System.Windows.Forms.Label();
			lblInstructions2 = new System.Windows.Forms.Label();
			helpProvider1 = new System.Windows.Forms.HelpProvider();
			grpCurrentLang.SuspendLayout();
			this.SuspendLayout();
			//
			// lblLookup
			//
			resources.ApplyResources(lblLookup, "lblLookup");
			lblLookup.Name = "lblLookup";
			helpProvider1.SetShowHelp(lblLookup, ((bool)(resources.GetObject("lblLookup.ShowHelp"))));
			//
			// txtFindPattern
			//
			this.txtFindPattern.AcceptsReturn = true;
			resources.ApplyResources(this.txtFindPattern, "txtFindPattern");
			helpProvider1.SetHelpString(this.txtFindPattern, resources.GetString("txtFindPattern.HelpString"));
			this.txtFindPattern.Name = "txtFindPattern";
			helpProvider1.SetShowHelp(this.txtFindPattern, ((bool)(resources.GetObject("txtFindPattern.ShowHelp"))));
			this.txtFindPattern.Enter += new System.EventHandler(this.txtFindPattern_Enter);
			this.txtFindPattern.Leave += new System.EventHandler(this.txtFindPattern_Leave);
			this.txtFindPattern.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtFindPattern_KeyPress);
			this.txtFindPattern.TextChanged += new System.EventHandler(this.txtFindPattern_TextChanged);
			//
			// btnFind
			//
			resources.ApplyResources(this.btnFind, "btnFind");
			helpProvider1.SetHelpString(this.btnFind, resources.GetString("btnFind.HelpString"));
			this.btnFind.Name = "btnFind";
			helpProvider1.SetShowHelp(this.btnFind, ((bool)(resources.GetObject("btnFind.ShowHelp"))));
			this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
			//
			// lblFindPattern
			//
			resources.ApplyResources(lblFindPattern, "lblFindPattern");
			lblFindPattern.Name = "lblFindPattern";
			helpProvider1.SetShowHelp(lblFindPattern, ((bool)(resources.GetObject("lblFindPattern.ShowHelp"))));
			//
			// lvFindResult
			//
			resources.ApplyResources(this.lvFindResult, "lvFindResult");
			this.lvFindResult.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			hdrLanguageName,
			hdrCountry,
			hdrEthnologueCode});
			this.lvFindResult.FullRowSelect = true;
			helpProvider1.SetHelpString(this.lvFindResult, resources.GetString("lvFindResult.HelpString"));
			this.lvFindResult.HideSelection = false;
			this.lvFindResult.MultiSelect = false;
			this.lvFindResult.Name = "lvFindResult";
			helpProvider1.SetShowHelp(this.lvFindResult, ((bool)(resources.GetObject("lvFindResult.ShowHelp"))));
			this.lvFindResult.UseCompatibleStateImageBehavior = false;
			this.lvFindResult.View = System.Windows.Forms.View.Details;
			this.lvFindResult.Enter += new System.EventHandler(this.lvFindResult_Enter);
			this.lvFindResult.SelectedIndexChanged += new System.EventHandler(this.lvFindResult_SelectedIndexChanged);
			this.lvFindResult.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvFindResult_ColumnClick);
			//
			// hdrLanguageName
			//
			resources.ApplyResources(hdrLanguageName, "hdrLanguageName");
			//
			// hdrCountry
			//
			resources.ApplyResources(hdrCountry, "hdrCountry");
			//
			// hdrEthnologueCode
			//
			resources.ApplyResources(hdrEthnologueCode, "hdrEthnologueCode");
			//
			// grpCurrentLang
			//
			grpCurrentLang.Controls.Add(lblCurrentEthCode);
			grpCurrentLang.Controls.Add(this.lblCurrentEthCodeValue);
			grpCurrentLang.Controls.Add(lblCurrentLangName);
			grpCurrentLang.Controls.Add(this.txtCurrentLangName);
			grpCurrentLang.Controls.Add(lblOtherNames);
			grpCurrentLang.Controls.Add(this.lblOtherNamesList);
			grpCurrentLang.FlatStyle = System.Windows.Forms.FlatStyle.System;
			resources.ApplyResources(grpCurrentLang, "grpCurrentLang");
			grpCurrentLang.Name = "grpCurrentLang";
			helpProvider1.SetShowHelp(grpCurrentLang, ((bool)(resources.GetObject("grpCurrentLang.ShowHelp"))));
			grpCurrentLang.TabStop = false;
			//
			// lblCurrentEthCode
			//
			resources.ApplyResources(lblCurrentEthCode, "lblCurrentEthCode");
			lblCurrentEthCode.BackColor = System.Drawing.SystemColors.Control;
			lblCurrentEthCode.Name = "lblCurrentEthCode";
			helpProvider1.SetShowHelp(lblCurrentEthCode, ((bool)(resources.GetObject("lblCurrentEthCode.ShowHelp"))));
			//
			// lblCurrentEthCodeValue
			//
			resources.ApplyResources(this.lblCurrentEthCodeValue, "lblCurrentEthCodeValue");
			helpProvider1.SetHelpString(this.lblCurrentEthCodeValue, resources.GetString("lblCurrentEthCodeValue.HelpString"));
			this.lblCurrentEthCodeValue.Name = "lblCurrentEthCodeValue";
			helpProvider1.SetShowHelp(this.lblCurrentEthCodeValue, ((bool)(resources.GetObject("lblCurrentEthCodeValue.ShowHelp"))));
			this.lblCurrentEthCodeValue.Tag = "(Unknown)";
			//
			// lblCurrentLangName
			//
			resources.ApplyResources(lblCurrentLangName, "lblCurrentLangName");
			lblCurrentLangName.Name = "lblCurrentLangName";
			helpProvider1.SetShowHelp(lblCurrentLangName, ((bool)(resources.GetObject("lblCurrentLangName.ShowHelp"))));
			//
			// txtCurrentLangName
			//
			helpProvider1.SetHelpString(this.txtCurrentLangName, resources.GetString("txtCurrentLangName.HelpString"));
			resources.ApplyResources(this.txtCurrentLangName, "txtCurrentLangName");
			this.txtCurrentLangName.Name = "txtCurrentLangName";
			helpProvider1.SetShowHelp(this.txtCurrentLangName, ((bool)(resources.GetObject("txtCurrentLangName.ShowHelp"))));
			this.txtCurrentLangName.TextChanged += new System.EventHandler(this.txtCurrentLangName_TextChanged);
			//
			// lblOtherNames
			//
			resources.ApplyResources(lblOtherNames, "lblOtherNames");
			lblOtherNames.Name = "lblOtherNames";
			helpProvider1.SetShowHelp(lblOtherNames, ((bool)(resources.GetObject("lblOtherNames.ShowHelp"))));
			//
			// lblOtherNamesList
			//
			resources.ApplyResources(this.lblOtherNamesList, "lblOtherNamesList");
			helpProvider1.SetHelpString(this.lblOtherNamesList, resources.GetString("lblOtherNamesList.HelpString"));
			this.lblOtherNamesList.Name = "lblOtherNamesList";
			helpProvider1.SetShowHelp(this.lblOtherNamesList, ((bool)(resources.GetObject("lblOtherNamesList.ShowHelp"))));
			this.lblOtherNamesList.UseMnemonic = false;
			this.lblOtherNamesList.Paint += new System.Windows.Forms.PaintEventHandler(this.lblOtherNamesList_Paint);
			//
			// lblInstructions1
			//
			resources.ApplyResources(lblInstructions1, "lblInstructions1");
			lblInstructions1.Name = "lblInstructions1";
			helpProvider1.SetShowHelp(lblInstructions1, ((bool)(resources.GetObject("lblInstructions1.ShowHelp"))));
			//
			// lblInstructions2
			//
			resources.ApplyResources(lblInstructions2, "lblInstructions2");
			lblInstructions2.Name = "lblInstructions2";
			helpProvider1.SetShowHelp(lblInstructions2, ((bool)(resources.GetObject("lblInstructions2.ShowHelp"))));
			//
			// cboLookup
			//
			this.cboLookup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			helpProvider1.SetHelpString(this.cboLookup, resources.GetString("cboLookup.HelpString"));
			resources.ApplyResources(this.cboLookup, "cboLookup");
			this.cboLookup.Items.AddRange(new object[] {
			resources.GetString("cboLookup.Items"),
			resources.GetString("cboLookup.Items1"),
			resources.GetString("cboLookup.Items2")});
			this.cboLookup.Name = "cboLookup";
			helpProvider1.SetShowHelp(this.cboLookup, ((bool)(resources.GetObject("cboLookup.ShowHelp"))));
			this.cboLookup.Enter += new System.EventHandler(this.cboLookup_Enter);
			this.cboLookup.SelectedIndexChanged += new System.EventHandler(this.cboLookup_SelectedIndexChanged);
			//
			// LanguageSetup
			//
			this.Controls.Add(this.btnFind);
			this.Controls.Add(this.txtFindPattern);
			this.Controls.Add(this.cboLookup);
			this.Controls.Add(lblInstructions2);
			this.Controls.Add(lblInstructions1);
			this.Controls.Add(grpCurrentLang);
			this.Controls.Add(this.lvFindResult);
			this.Controls.Add(lblFindPattern);
			this.Controls.Add(lblLookup);
			this.Name = "LanguageSetup";
			helpProvider1.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			resources.ApplyResources(this, "$this");
			grpCurrentLang.ResumeLayout(false);
			grpCurrentLang.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 19
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(BaseGoDlg));
			this.btnClose = new System.Windows.Forms.Button();
			this.btnOK = new System.Windows.Forms.Button();
			this.btnInsert = new System.Windows.Forms.Button();
			this.btnHelp = new System.Windows.Forms.Button();
			this.panel1 = new System.Windows.Forms.Panel();
			this.m_tbForm = new SIL.FieldWorks.Common.Widgets.FwTextBox();
			this.m_formLabel = new System.Windows.Forms.Label();
			this.m_cbWritingSystems = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label1 = new System.Windows.Forms.Label();
			this.m_fwTextBoxBottomMsg = new SIL.FieldWorks.Common.Widgets.FwTextBox();
			this.label2 = new System.Windows.Forms.Label();
			this.matchingEntries = new System.Windows.Forms.UserControl();
			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");
			this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.btnClose.Name = "btnClose";
			//
			// btnOK
			//
			resources.ApplyResources(this.btnOK, "btnOK");
			this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.btnOK.Name = "btnOK";
			//
			// btnInsert
			//
			resources.ApplyResources(this.btnInsert, "btnInsert");
			this.btnInsert.Name = "btnInsert";
			this.btnInsert.Click += new System.EventHandler(this.btnInsert_Click);
			//
			// btnHelp
			//
			resources.ApplyResources(this.btnHelp, "btnHelp");
			this.btnHelp.Name = "btnHelp";
			this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
			//
			// panel1
			//
			this.panel1.Controls.Add(this.m_tbForm);
			this.panel1.Controls.Add(this.m_formLabel);
			resources.ApplyResources(this.panel1, "panel1");
			this.panel1.Name = "panel1";
			//
			// m_tbForm
			//
			this.m_tbForm.AdjustStringHeight = true;
			this.m_tbForm.AllowMultipleLines = false;
			this.m_tbForm.BackColor = System.Drawing.SystemColors.Window;
			this.m_tbForm.controlID = null;
			resources.ApplyResources(this.m_tbForm, "m_tbForm");
			this.m_tbForm.Name = "m_tbForm";
			this.m_tbForm.SelectionLength = 0;
			this.m_tbForm.SelectionStart = 0;
			//
			// m_formLabel
			//
			resources.ApplyResources(this.m_formLabel, "m_formLabel");
			this.m_formLabel.Name = "m_formLabel";
			//
			// m_cbWritingSystems
			//
			this.m_cbWritingSystems.AllowSpaceInEditBox = false;
			this.m_cbWritingSystems.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_cbWritingSystems, "m_cbWritingSystems");
			this.m_cbWritingSystems.Name = "m_cbWritingSystems";
			this.m_cbWritingSystems.Sorted = true;
			//
			// label1
			//
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			//
			// m_fwTextBoxBottomMsg
			//
			this.m_fwTextBoxBottomMsg.AdjustStringHeight = true;
			this.m_fwTextBoxBottomMsg.AllowMultipleLines = false;
			this.m_fwTextBoxBottomMsg.HasBorder = false;
			resources.ApplyResources(this.m_fwTextBoxBottomMsg, "m_fwTextBoxBottomMsg");
			this.m_fwTextBoxBottomMsg.BackColor = System.Drawing.SystemColors.Control;
			this.m_fwTextBoxBottomMsg.CausesValidation = false;
			this.m_fwTextBoxBottomMsg.controlID = null;
			this.m_fwTextBoxBottomMsg.Name = "m_fwTextBoxBottomMsg";
			this.m_fwTextBoxBottomMsg.SelectionLength = 0;
			this.m_fwTextBoxBottomMsg.SelectionStart = 0;
			//
			// label2
			//
			resources.ApplyResources(this.label2, "label2");
			this.label2.Name = "label2";
			//
			// matchingEntries
			//
			resources.ApplyResources(this.matchingEntries, "matchingEntries");
			this.matchingEntries.Name = "matchingEntries";
			this.matchingEntries.TabStop = false;
			//
			// BaseGoDlg
			//
			this.AcceptButton = this.btnOK;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.btnClose;
			this.Controls.Add(this.matchingEntries);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.m_fwTextBoxBottomMsg);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.m_cbWritingSystems);
			this.Controls.Add(this.panel1);
			this.Controls.Add(this.btnHelp);
			this.Controls.Add(this.btnInsert);
			this.Controls.Add(this.btnOK);
			this.Controls.Add(this.btnClose);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "BaseGoDlg";
			this.ShowInTaskbar = false;
			this.Closed += new System.EventHandler(this.BaseGoDlg_Closed);
			this.Activated += new System.EventHandler(this.BaseGoDlg_Activated);
			this.panel1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.m_tbForm)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_fwTextBoxBottomMsg)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 20
0
		/// -----------------------------------------------------------------------------------
		/// <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.Label label1;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KeyboardControl));
			System.Windows.Forms.Label label2;
			this.m_cboKeyboard = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_cbLangId = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.helpProvider1 = new System.Windows.Forms.HelpProvider();
			label1 = new System.Windows.Forms.Label();
			label2 = new System.Windows.Forms.Label();
			this.SuspendLayout();
			//
			// label1
			//
			resources.ApplyResources(label1, "label1");
			label1.BackColor = System.Drawing.Color.Transparent;
			label1.Name = "label1";
			//
			// label2
			//
			resources.ApplyResources(label2, "label2");
			label2.BackColor = System.Drawing.Color.Transparent;
			label2.Name = "label2";
			//
			// m_cboKeyboard
			//
			this.m_cboKeyboard.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider1.SetHelpString(this.m_cboKeyboard, resources.GetString("m_cboKeyboard.HelpString"));
			resources.ApplyResources(this.m_cboKeyboard, "m_cboKeyboard");
			this.m_cboKeyboard.Name = "m_cboKeyboard";
			this.helpProvider1.SetShowHelp(this.m_cboKeyboard, ((bool)(resources.GetObject("m_cboKeyboard.ShowHelp"))));
			this.m_cboKeyboard.Sorted = true;
			this.m_cboKeyboard.SelectedIndexChanged += new System.EventHandler(this.m_cboKeyboard_SelectedIndexChanged);
			//
			// m_cbLangId
			//
			this.m_cbLangId.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider1.SetHelpString(this.m_cbLangId, resources.GetString("m_cbLangId.HelpString"));
			resources.ApplyResources(this.m_cbLangId, "m_cbLangId");
			this.m_cbLangId.Name = "m_cbLangId";
			this.helpProvider1.SetShowHelp(this.m_cbLangId, ((bool)(resources.GetObject("m_cbLangId.ShowHelp"))));
			this.m_cbLangId.Sorted = true;
			this.m_cbLangId.SelectedIndexChanged += new System.EventHandler(this.m_cbLangId_SelectedIndexChanged);
			//
			// KeyboardControl
			//
			this.Controls.Add(this.m_cboKeyboard);
			this.Controls.Add(this.m_cbLangId);
			this.Controls.Add(label2);
			this.Controls.Add(label1);
			this.Name = "KeyboardControl";
			resources.ApplyResources(this, "$this");
			this.ResumeLayout(false);
			this.PerformLayout();

		}
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing"><c>true</c> to release both managed and unmanaged
		/// resources; <c>false</c> to release only unmanaged resources.
		/// </param>
		/// ------------------------------------------------------------------------------------
		protected override void Dispose(bool disposing)
		{
			//Debug.WriteLineIf(!disposing, "****************** " + GetType().Name + " 'disposing' is false. ******************");
			// Must not be run more than once.
			if (IsDisposed)
				return;

			if (disposing)
			{
				// release managed objects
				if (components != null)
					components.Dispose();
				if (m_fwTextBoxTestWs != null)
					m_fwTextBoxTestWs.Dispose();
				// We may have made the cache from COM objects given to us by a COM client.
				// In that case, we have to dispose it.
				if (m_cacheMadeLocally && m_cache != null)
					m_cache.Dispose();
				if (m_langDefCurrent != null)
					m_langDefCurrent.ReleaseRootRb();
				if (cbDictionaries != null)
					cbDictionaries.Dispose();
			}

			// release unmanaged objects regardless of disposing flag
			if (m_fwt != null && Marshal.IsComObject(m_fwt))
			{
				System.Runtime.InteropServices.Marshal.ReleaseComObject(m_fwt);
				m_fwt = null;
			}

			if (m_strmLog != null && Marshal.IsComObject(m_strmLog))
			{
				System.Runtime.InteropServices.Marshal.ReleaseComObject(m_strmLog);
				m_strmLog = null;
			}

			PUACharacter.ReleaseTheCom();

			// Garbage collect the cached ICU
			m_cachedIcu = null;
			// GC.Collect(); Can't be deterministic about when it happens, even by calling for a collection.
			m_langDefCurrent = null;
			m_fwTextBoxTestWs = null;
			cbDictionaries = null;

			base.Dispose(disposing);
		}
Ejemplo n.º 22
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.Windows.Forms.Button btnCancel;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FwUserProperties));
			System.Windows.Forms.Label lblConfirmPwd2;
			System.Windows.Forms.Label lblPassword;
			System.Windows.Forms.Label lblDescription;
			System.Windows.Forms.Label lblName;
			System.Windows.Forms.Label lblApplication;
			System.Windows.Forms.Button btnModify;
			System.Windows.Forms.Label lblUsers;
			System.Windows.Forms.Button btnAdd;
			System.Windows.Forms.Button btnHelp;
			this.btnOk = new System.Windows.Forms.Button();
			this.lblMaintenanceAccess = new System.Windows.Forms.Label();
			this.lblPasswordGroup = new System.Windows.Forms.Label();
			this.FaceImages = new System.Windows.Forms.ImageList(this.components);
			this.tabControl = new System.Windows.Forms.TabControl();
			this.tabAccount = new System.Windows.Forms.TabPage();
			this.optMaintenanceAccess = new System.Windows.Forms.CheckBox();
			this.optMustChangePwd = new System.Windows.Forms.CheckBox();
			this.lblConfirmPwd1 = new System.Windows.Forms.Label();
			this.txtConfirmPwd = new System.Windows.Forms.TextBox();
			this.txtPassword = new System.Windows.Forms.TextBox();
			this.txtUserDescription = new System.Windows.Forms.TextBox();
			this.lblUserName = new System.Windows.Forms.Label();
			this.tabFeatures = new System.Windows.Forms.TabPage();
			this.grpFeatureDescription = new System.Windows.Forms.GroupBox();
			this.txtFeatureDescription = new System.Windows.Forms.TextBox();
			this.clbFeatures = new System.Windows.Forms.CheckedListBox();
			this.lblSelectFeatures = new System.Windows.Forms.Label();
			this.cboApplication = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.lblAvailableFeatures = new System.Windows.Forms.Label();
			this.tabDataAccess = new System.Windows.Forms.TabPage();
			this.grpDataDescription = new System.Windows.Forms.GroupBox();
			this.txtDataDescription = new System.Windows.Forms.TextBox();
			this.tvwDataAccess = new System.Windows.Forms.TreeView();
			this.optJustThisData = new System.Windows.Forms.RadioButton();
			this.optAllData = new System.Windows.Forms.RadioButton();
			this.lblAvailableData = new System.Windows.Forms.Label();
			this.lvwUsers = new System.Windows.Forms.ListView();
			this.user = new System.Windows.Forms.ColumnHeader();
			this.btnDelete = new System.Windows.Forms.Button();
			btnCancel = new System.Windows.Forms.Button();
			lblConfirmPwd2 = new System.Windows.Forms.Label();
			lblPassword = new System.Windows.Forms.Label();
			lblDescription = new System.Windows.Forms.Label();
			lblName = new System.Windows.Forms.Label();
			lblApplication = new System.Windows.Forms.Label();
			btnModify = new System.Windows.Forms.Button();
			lblUsers = new System.Windows.Forms.Label();
			btnAdd = new System.Windows.Forms.Button();
			btnHelp = new System.Windows.Forms.Button();
			this.tabControl.SuspendLayout();
			this.tabAccount.SuspendLayout();
			this.tabFeatures.SuspendLayout();
			this.grpFeatureDescription.SuspendLayout();
			this.tabDataAccess.SuspendLayout();
			this.grpDataDescription.SuspendLayout();
			this.SuspendLayout();
			//
			// btnCancel
			//
			resources.ApplyResources(btnCancel, "btnCancel");
			btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			btnCancel.Name = "btnCancel";
			//
			// lblConfirmPwd2
			//
			resources.ApplyResources(lblConfirmPwd2, "lblConfirmPwd2");
			lblConfirmPwd2.Name = "lblConfirmPwd2";
			//
			// lblPassword
			//
			resources.ApplyResources(lblPassword, "lblPassword");
			lblPassword.Name = "lblPassword";
			//
			// lblDescription
			//
			resources.ApplyResources(lblDescription, "lblDescription");
			lblDescription.Name = "lblDescription";
			//
			// lblName
			//
			resources.ApplyResources(lblName, "lblName");
			lblName.Name = "lblName";
			//
			// lblApplication
			//
			resources.ApplyResources(lblApplication, "lblApplication");
			lblApplication.Name = "lblApplication";
			//
			// btnModify
			//
			resources.ApplyResources(btnModify, "btnModify");
			btnModify.Name = "btnModify";
			//
			// lblUsers
			//
			resources.ApplyResources(lblUsers, "lblUsers");
			lblUsers.Name = "lblUsers";
			//
			// btnAdd
			//
			resources.ApplyResources(btnAdd, "btnAdd");
			btnAdd.Name = "btnAdd";
			btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
			//
			// btnHelp
			//
			resources.ApplyResources(btnHelp, "btnHelp");
			btnHelp.Name = "btnHelp";
			btnHelp.Click += new System.EventHandler(this.btnHelp_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);
			//
			// lblMaintenanceAccess
			//
			resources.ApplyResources(this.lblMaintenanceAccess, "lblMaintenanceAccess");
			this.lblMaintenanceAccess.Name = "lblMaintenanceAccess";
			//
			// lblPasswordGroup
			//
			resources.ApplyResources(this.lblPasswordGroup, "lblPasswordGroup");
			this.lblPasswordGroup.Name = "lblPasswordGroup";
			//
			// FaceImages
			//
			this.FaceImages.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("FaceImages.ImageStream")));
			this.FaceImages.TransparentColor = System.Drawing.Color.Transparent;
			this.FaceImages.Images.SetKeyName(0, "");
			//
			// tabControl
			//
			this.tabControl.Controls.Add(this.tabAccount);
			this.tabControl.Controls.Add(this.tabFeatures);
			this.tabControl.Controls.Add(this.tabDataAccess);
			resources.ApplyResources(this.tabControl, "tabControl");
			this.tabControl.Name = "tabControl";
			this.tabControl.SelectedIndex = 0;
			//
			// tabAccount
			//
			resources.ApplyResources(this.tabAccount, "tabAccount");
			this.tabAccount.Controls.Add(this.optMaintenanceAccess);
			this.tabAccount.Controls.Add(this.lblMaintenanceAccess);
			this.tabAccount.Controls.Add(this.optMustChangePwd);
			this.tabAccount.Controls.Add(this.lblConfirmPwd1);
			this.tabAccount.Controls.Add(this.txtConfirmPwd);
			this.tabAccount.Controls.Add(lblConfirmPwd2);
			this.tabAccount.Controls.Add(this.txtPassword);
			this.tabAccount.Controls.Add(lblPassword);
			this.tabAccount.Controls.Add(this.lblPasswordGroup);
			this.tabAccount.Controls.Add(this.txtUserDescription);
			this.tabAccount.Controls.Add(this.lblUserName);
			this.tabAccount.Controls.Add(lblDescription);
			this.tabAccount.Controls.Add(lblName);
			this.tabAccount.Name = "tabAccount";
			this.tabAccount.Paint += new System.Windows.Forms.PaintEventHandler(this.tabAccount_Paint);
			//
			// optMaintenanceAccess
			//
			resources.ApplyResources(this.optMaintenanceAccess, "optMaintenanceAccess");
			this.optMaintenanceAccess.Name = "optMaintenanceAccess";
			//
			// optMustChangePwd
			//
			resources.ApplyResources(this.optMustChangePwd, "optMustChangePwd");
			this.optMustChangePwd.Name = "optMustChangePwd";
			//
			// lblConfirmPwd1
			//
			resources.ApplyResources(this.lblConfirmPwd1, "lblConfirmPwd1");
			this.lblConfirmPwd1.Name = "lblConfirmPwd1";
			//
			// txtConfirmPwd
			//
			resources.ApplyResources(this.txtConfirmPwd, "txtConfirmPwd");
			this.txtConfirmPwd.Name = "txtConfirmPwd";
			//
			// txtPassword
			//
			resources.ApplyResources(this.txtPassword, "txtPassword");
			this.txtPassword.Name = "txtPassword";
			//
			// txtUserDescription
			//
			this.txtUserDescription.AcceptsReturn = true;
			this.txtUserDescription.AllowDrop = true;
			resources.ApplyResources(this.txtUserDescription, "txtUserDescription");
			this.txtUserDescription.HideSelection = false;
			this.txtUserDescription.Name = "txtUserDescription";
			//
			// lblUserName
			//
			resources.ApplyResources(this.lblUserName, "lblUserName");
			this.lblUserName.Name = "lblUserName";
			this.lblUserName.Tag = "{0}";
			//
			// tabFeatures
			//
			resources.ApplyResources(this.tabFeatures, "tabFeatures");
			this.tabFeatures.Controls.Add(this.grpFeatureDescription);
			this.tabFeatures.Controls.Add(this.clbFeatures);
			this.tabFeatures.Controls.Add(this.lblSelectFeatures);
			this.tabFeatures.Controls.Add(this.cboApplication);
			this.tabFeatures.Controls.Add(lblApplication);
			this.tabFeatures.Controls.Add(this.lblAvailableFeatures);
			this.tabFeatures.Name = "tabFeatures";
			//
			// grpFeatureDescription
			//
			resources.ApplyResources(this.grpFeatureDescription, "grpFeatureDescription");
			this.grpFeatureDescription.Controls.Add(this.txtFeatureDescription);
			this.grpFeatureDescription.Name = "grpFeatureDescription";
			this.grpFeatureDescription.TabStop = false;
			//
			// txtFeatureDescription
			//
			resources.ApplyResources(this.txtFeatureDescription, "txtFeatureDescription");
			this.txtFeatureDescription.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtFeatureDescription.Name = "txtFeatureDescription";
			this.txtFeatureDescription.ReadOnly = true;
			this.txtFeatureDescription.TabStop = false;
			//
			// clbFeatures
			//
			resources.ApplyResources(this.clbFeatures, "clbFeatures");
			this.clbFeatures.CheckOnClick = true;
			this.clbFeatures.Name = "clbFeatures";
			//
			// lblSelectFeatures
			//
			this.lblSelectFeatures.AccessibleDescription = global::SIL.FieldWorks.FwCoreDlgs.FwCoreDlgs.kstidOpen;
			resources.ApplyResources(this.lblSelectFeatures, "lblSelectFeatures");
			this.lblSelectFeatures.Name = "lblSelectFeatures";
			this.lblSelectFeatures.Tag = "Select the features to make available for {0}.";
			//
			// cboApplication
			//
			this.cboApplication.AllowSpaceInEditBox = false;
			this.cboApplication.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
			this.cboApplication.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.cboApplication, "cboApplication");
			this.cboApplication.Name = "cboApplication";
			//
			// lblAvailableFeatures
			//
			resources.ApplyResources(this.lblAvailableFeatures, "lblAvailableFeatures");
			this.lblAvailableFeatures.Name = "lblAvailableFeatures";
			this.lblAvailableFeatures.Tag = "Available Features for {0}";
			//
			// tabDataAccess
			//
			resources.ApplyResources(this.tabDataAccess, "tabDataAccess");
			this.tabDataAccess.Controls.Add(btnModify);
			this.tabDataAccess.Controls.Add(this.grpDataDescription);
			this.tabDataAccess.Controls.Add(this.tvwDataAccess);
			this.tabDataAccess.Controls.Add(this.optJustThisData);
			this.tabDataAccess.Controls.Add(this.optAllData);
			this.tabDataAccess.Controls.Add(this.lblAvailableData);
			this.tabDataAccess.Name = "tabDataAccess";
			//
			// grpDataDescription
			//
			resources.ApplyResources(this.grpDataDescription, "grpDataDescription");
			this.grpDataDescription.Controls.Add(this.txtDataDescription);
			this.grpDataDescription.Name = "grpDataDescription";
			this.grpDataDescription.TabStop = false;
			//
			// txtDataDescription
			//
			resources.ApplyResources(this.txtDataDescription, "txtDataDescription");
			this.txtDataDescription.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtDataDescription.Name = "txtDataDescription";
			this.txtDataDescription.ReadOnly = true;
			this.txtDataDescription.TabStop = false;
			//
			// tvwDataAccess
			//
			resources.ApplyResources(this.tvwDataAccess, "tvwDataAccess");
			this.tvwDataAccess.ItemHeight = 16;
			this.tvwDataAccess.Name = "tvwDataAccess";
			//
			// optJustThisData
			//
			resources.ApplyResources(this.optJustThisData, "optJustThisData");
			this.optJustThisData.Name = "optJustThisData";
			//
			// optAllData
			//
			this.optAllData.Checked = true;
			resources.ApplyResources(this.optAllData, "optAllData");
			this.optAllData.Name = "optAllData";
			this.optAllData.TabStop = true;
			//
			// lblAvailableData
			//
			resources.ApplyResources(this.lblAvailableData, "lblAvailableData");
			this.lblAvailableData.Name = "lblAvailableData";
			this.lblAvailableData.Tag = "Available Data for {0}";
			//
			// lvwUsers
			//
			resources.ApplyResources(this.lvwUsers, "lvwUsers");
			this.lvwUsers.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			this.user});
			this.lvwUsers.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
			this.lvwUsers.HideSelection = false;
			this.lvwUsers.LabelEdit = true;
			this.lvwUsers.MultiSelect = false;
			this.lvwUsers.Name = "lvwUsers";
			this.lvwUsers.SmallImageList = this.FaceImages;
			this.lvwUsers.Sorting = System.Windows.Forms.SortOrder.Ascending;
			this.lvwUsers.UseCompatibleStateImageBehavior = false;
			this.lvwUsers.View = System.Windows.Forms.View.Details;
			this.lvwUsers.AfterLabelEdit += new System.Windows.Forms.LabelEditEventHandler(this.lvwUsers_AfterLabelEdit);
			this.lvwUsers.SelectedIndexChanged += new System.EventHandler(this.lvwUsers_SelectedIndexChanged);
			this.lvwUsers.Leave += new System.EventHandler(this.lvwUsers_Leave);
			//
			// user
			//
			this.user.Text = global::SIL.FieldWorks.FwCoreDlgs.FwCoreDlgs.kstidOpen;
			resources.ApplyResources(this.user, "user");
			//
			// btnDelete
			//
			resources.ApplyResources(this.btnDelete, "btnDelete");
			this.btnDelete.Name = "btnDelete";
			this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
			//
			// FwUserProperties
			//
			this.AcceptButton = this.btnOk;
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = btnCancel;
			this.Controls.Add(btnHelp);
			this.Controls.Add(lblUsers);
			this.Controls.Add(this.lvwUsers);
			this.Controls.Add(this.btnDelete);
			this.Controls.Add(btnAdd);
			this.Controls.Add(this.tabControl);
			this.Controls.Add(btnCancel);
			this.Controls.Add(this.btnOk);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "FwUserProperties";
			this.ShowInTaskbar = false;
			this.tabControl.ResumeLayout(false);
			this.tabAccount.ResumeLayout(false);
			this.tabAccount.PerformLayout();
			this.tabFeatures.ResumeLayout(false);
			this.tabFeatures.PerformLayout();
			this.grpFeatureDescription.ResumeLayout(false);
			this.grpFeatureDescription.PerformLayout();
			this.tabDataAccess.ResumeLayout(false);
			this.tabDataAccess.PerformLayout();
			this.grpDataDescription.ResumeLayout(false);
			this.grpDataDescription.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 23
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.Windows.Forms.Label lblLookup;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LanguageSetup));
     System.Windows.Forms.Label        lblFindPattern;
     System.Windows.Forms.ColumnHeader hdrLanguageName;
     System.Windows.Forms.ColumnHeader hdrCountry;
     System.Windows.Forms.ColumnHeader hdrEthnologueCode;
     System.Windows.Forms.GroupBox     grpCurrentLang;
     System.Windows.Forms.Label        lblCurrentEthCode;
     System.Windows.Forms.Label        lblCurrentLangName;
     System.Windows.Forms.Label        lblOtherNames;
     System.Windows.Forms.Label        lblInstructions1;
     System.Windows.Forms.Label        lblInstructions2;
     System.Windows.Forms.HelpProvider helpProvider1;
     this.txtFindPattern         = new System.Windows.Forms.TextBox();
     this.btnFind                = new System.Windows.Forms.Button();
     this.lvFindResult           = new System.Windows.Forms.ListView();
     this.lblCurrentEthCodeValue = new System.Windows.Forms.Label();
     this.txtCurrentLangName     = new System.Windows.Forms.TextBox();
     this.lblOtherNamesList      = new System.Windows.Forms.Label();
     this.toolTip1               = new System.Windows.Forms.ToolTip(this.components);
     this.cboLookup              = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
     lblLookup          = new System.Windows.Forms.Label();
     lblFindPattern     = new System.Windows.Forms.Label();
     hdrLanguageName    = new System.Windows.Forms.ColumnHeader();
     hdrCountry         = new System.Windows.Forms.ColumnHeader();
     hdrEthnologueCode  = new System.Windows.Forms.ColumnHeader();
     grpCurrentLang     = new System.Windows.Forms.GroupBox();
     lblCurrentEthCode  = new System.Windows.Forms.Label();
     lblCurrentLangName = new System.Windows.Forms.Label();
     lblOtherNames      = new System.Windows.Forms.Label();
     lblInstructions1   = new System.Windows.Forms.Label();
     lblInstructions2   = new System.Windows.Forms.Label();
     helpProvider1      = new System.Windows.Forms.HelpProvider();
     grpCurrentLang.SuspendLayout();
     this.SuspendLayout();
     //
     // lblLookup
     //
     resources.ApplyResources(lblLookup, "lblLookup");
     lblLookup.Name = "lblLookup";
     helpProvider1.SetShowHelp(lblLookup, ((bool)(resources.GetObject("lblLookup.ShowHelp"))));
     //
     // txtFindPattern
     //
     this.txtFindPattern.AcceptsReturn = true;
     resources.ApplyResources(this.txtFindPattern, "txtFindPattern");
     helpProvider1.SetHelpString(this.txtFindPattern, resources.GetString("txtFindPattern.HelpString"));
     this.txtFindPattern.Name = "txtFindPattern";
     helpProvider1.SetShowHelp(this.txtFindPattern, ((bool)(resources.GetObject("txtFindPattern.ShowHelp"))));
     this.txtFindPattern.Enter       += new System.EventHandler(this.txtFindPattern_Enter);
     this.txtFindPattern.Leave       += new System.EventHandler(this.txtFindPattern_Leave);
     this.txtFindPattern.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.txtFindPattern_KeyPress);
     this.txtFindPattern.TextChanged += new System.EventHandler(this.txtFindPattern_TextChanged);
     //
     // btnFind
     //
     resources.ApplyResources(this.btnFind, "btnFind");
     helpProvider1.SetHelpString(this.btnFind, resources.GetString("btnFind.HelpString"));
     this.btnFind.Name = "btnFind";
     helpProvider1.SetShowHelp(this.btnFind, ((bool)(resources.GetObject("btnFind.ShowHelp"))));
     this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
     //
     // lblFindPattern
     //
     resources.ApplyResources(lblFindPattern, "lblFindPattern");
     lblFindPattern.Name = "lblFindPattern";
     helpProvider1.SetShowHelp(lblFindPattern, ((bool)(resources.GetObject("lblFindPattern.ShowHelp"))));
     //
     // lvFindResult
     //
     resources.ApplyResources(this.lvFindResult, "lvFindResult");
     this.lvFindResult.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         hdrLanguageName,
         hdrCountry,
         hdrEthnologueCode
     });
     this.lvFindResult.FullRowSelect = true;
     helpProvider1.SetHelpString(this.lvFindResult, resources.GetString("lvFindResult.HelpString"));
     this.lvFindResult.HideSelection = false;
     this.lvFindResult.MultiSelect   = false;
     this.lvFindResult.Name          = "lvFindResult";
     helpProvider1.SetShowHelp(this.lvFindResult, ((bool)(resources.GetObject("lvFindResult.ShowHelp"))));
     this.lvFindResult.UseCompatibleStateImageBehavior = false;
     this.lvFindResult.View   = System.Windows.Forms.View.Details;
     this.lvFindResult.Enter += new System.EventHandler(this.lvFindResult_Enter);
     this.lvFindResult.SelectedIndexChanged += new System.EventHandler(this.lvFindResult_SelectedIndexChanged);
     this.lvFindResult.ColumnClick          += new System.Windows.Forms.ColumnClickEventHandler(this.lvFindResult_ColumnClick);
     //
     // hdrLanguageName
     //
     resources.ApplyResources(hdrLanguageName, "hdrLanguageName");
     //
     // hdrCountry
     //
     resources.ApplyResources(hdrCountry, "hdrCountry");
     //
     // hdrEthnologueCode
     //
     resources.ApplyResources(hdrEthnologueCode, "hdrEthnologueCode");
     //
     // grpCurrentLang
     //
     grpCurrentLang.Controls.Add(lblCurrentEthCode);
     grpCurrentLang.Controls.Add(this.lblCurrentEthCodeValue);
     grpCurrentLang.Controls.Add(lblCurrentLangName);
     grpCurrentLang.Controls.Add(this.txtCurrentLangName);
     grpCurrentLang.Controls.Add(lblOtherNames);
     grpCurrentLang.Controls.Add(this.lblOtherNamesList);
     grpCurrentLang.FlatStyle = System.Windows.Forms.FlatStyle.System;
     resources.ApplyResources(grpCurrentLang, "grpCurrentLang");
     grpCurrentLang.Name = "grpCurrentLang";
     helpProvider1.SetShowHelp(grpCurrentLang, ((bool)(resources.GetObject("grpCurrentLang.ShowHelp"))));
     grpCurrentLang.TabStop = false;
     //
     // lblCurrentEthCode
     //
     resources.ApplyResources(lblCurrentEthCode, "lblCurrentEthCode");
     lblCurrentEthCode.BackColor = System.Drawing.SystemColors.Control;
     lblCurrentEthCode.Name      = "lblCurrentEthCode";
     helpProvider1.SetShowHelp(lblCurrentEthCode, ((bool)(resources.GetObject("lblCurrentEthCode.ShowHelp"))));
     //
     // lblCurrentEthCodeValue
     //
     resources.ApplyResources(this.lblCurrentEthCodeValue, "lblCurrentEthCodeValue");
     helpProvider1.SetHelpString(this.lblCurrentEthCodeValue, resources.GetString("lblCurrentEthCodeValue.HelpString"));
     this.lblCurrentEthCodeValue.Name = "lblCurrentEthCodeValue";
     helpProvider1.SetShowHelp(this.lblCurrentEthCodeValue, ((bool)(resources.GetObject("lblCurrentEthCodeValue.ShowHelp"))));
     this.lblCurrentEthCodeValue.Tag = "(Unknown)";
     //
     // lblCurrentLangName
     //
     resources.ApplyResources(lblCurrentLangName, "lblCurrentLangName");
     lblCurrentLangName.Name = "lblCurrentLangName";
     helpProvider1.SetShowHelp(lblCurrentLangName, ((bool)(resources.GetObject("lblCurrentLangName.ShowHelp"))));
     //
     // txtCurrentLangName
     //
     helpProvider1.SetHelpString(this.txtCurrentLangName, resources.GetString("txtCurrentLangName.HelpString"));
     resources.ApplyResources(this.txtCurrentLangName, "txtCurrentLangName");
     this.txtCurrentLangName.Name = "txtCurrentLangName";
     helpProvider1.SetShowHelp(this.txtCurrentLangName, ((bool)(resources.GetObject("txtCurrentLangName.ShowHelp"))));
     this.txtCurrentLangName.TextChanged += new System.EventHandler(this.txtCurrentLangName_TextChanged);
     //
     // lblOtherNames
     //
     resources.ApplyResources(lblOtherNames, "lblOtherNames");
     lblOtherNames.Name = "lblOtherNames";
     helpProvider1.SetShowHelp(lblOtherNames, ((bool)(resources.GetObject("lblOtherNames.ShowHelp"))));
     //
     // lblOtherNamesList
     //
     resources.ApplyResources(this.lblOtherNamesList, "lblOtherNamesList");
     helpProvider1.SetHelpString(this.lblOtherNamesList, resources.GetString("lblOtherNamesList.HelpString"));
     this.lblOtherNamesList.Name = "lblOtherNamesList";
     helpProvider1.SetShowHelp(this.lblOtherNamesList, ((bool)(resources.GetObject("lblOtherNamesList.ShowHelp"))));
     this.lblOtherNamesList.UseMnemonic = false;
     this.lblOtherNamesList.Paint      += new System.Windows.Forms.PaintEventHandler(this.lblOtherNamesList_Paint);
     //
     // lblInstructions1
     //
     resources.ApplyResources(lblInstructions1, "lblInstructions1");
     lblInstructions1.Name = "lblInstructions1";
     helpProvider1.SetShowHelp(lblInstructions1, ((bool)(resources.GetObject("lblInstructions1.ShowHelp"))));
     //
     // lblInstructions2
     //
     resources.ApplyResources(lblInstructions2, "lblInstructions2");
     lblInstructions2.Name = "lblInstructions2";
     helpProvider1.SetShowHelp(lblInstructions2, ((bool)(resources.GetObject("lblInstructions2.ShowHelp"))));
     //
     // cboLookup
     //
     this.cboLookup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     helpProvider1.SetHelpString(this.cboLookup, resources.GetString("cboLookup.HelpString"));
     resources.ApplyResources(this.cboLookup, "cboLookup");
     this.cboLookup.Items.AddRange(new object[] {
         resources.GetString("cboLookup.Items"),
         resources.GetString("cboLookup.Items1"),
         resources.GetString("cboLookup.Items2")
     });
     this.cboLookup.Name = "cboLookup";
     helpProvider1.SetShowHelp(this.cboLookup, ((bool)(resources.GetObject("cboLookup.ShowHelp"))));
     this.cboLookup.Enter += new System.EventHandler(this.cboLookup_Enter);
     this.cboLookup.SelectedIndexChanged += new System.EventHandler(this.cboLookup_SelectedIndexChanged);
     //
     // LanguageSetup
     //
     this.Controls.Add(this.btnFind);
     this.Controls.Add(this.txtFindPattern);
     this.Controls.Add(this.cboLookup);
     this.Controls.Add(lblInstructions2);
     this.Controls.Add(lblInstructions1);
     this.Controls.Add(grpCurrentLang);
     this.Controls.Add(this.lvFindResult);
     this.Controls.Add(lblFindPattern);
     this.Controls.Add(lblLookup);
     this.Name = "LanguageSetup";
     helpProvider1.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
     resources.ApplyResources(this, "$this");
     grpCurrentLang.ResumeLayout(false);
     grpCurrentLang.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 24
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(WritingSystemWizard));
			System.Windows.Forms.TabPage tabPage1;
			System.Windows.Forms.Label lblIdentifyLanguage;
			System.Windows.Forms.Label lblAbbrev;
			System.Windows.Forms.Label lblWsAbbrevInstructions;
			System.Windows.Forms.Label lblWritingSystemAbbrev;
			System.Windows.Forms.TabPage tabPage2;
			System.Windows.Forms.Label lblRegionVariantInfo;
			System.Windows.Forms.Label lblRegionVariantInfoDesc;
			System.Windows.Forms.TabPage tabPage4;
			System.Windows.Forms.Label label2;
			System.Windows.Forms.Label lblFinishOrBack;
			System.Windows.Forms.Label lblKeyboardDesc;
			System.Windows.Forms.Label lblKeyboard;
			System.Windows.Forms.Label lblDirectionDesc;
			System.Windows.Forms.Label lblDirection;
			System.Windows.Forms.Label lblDefaultFonts;
			System.Windows.Forms.Label lblSimilarWSDesc;
			System.Windows.Forms.Label lblSimilarWS;
			System.Windows.Forms.TabPage tabPage3;
			System.Windows.Forms.Label label1;
			System.Windows.Forms.Label lblFontDesc;
			this.languageSetup = new SIL.FieldWorks.Common.Controls.LanguageSetup();
			this.lblMoreInfoDesc = new System.Windows.Forms.Label();
			this.m_regionVariantControl = new SIL.FieldWorks.FwCoreDlgControls.RegionVariantControl();
			this.btnAdvanced = new System.Windows.Forms.Button();
			this.chkUsesIPA = new System.Windows.Forms.CheckBox();
			this.m_ShortWsName = new System.Windows.Forms.TextBox();
			this.lblConverterDesc = new System.Windows.Forms.Label();
			this.btnEncodingConverterNew = new System.Windows.Forms.Button();
			this.cbEncodingConverter = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.lblEncodingConverter = new System.Windows.Forms.Label();
			this.m_KeyboardControl = new SIL.FieldWorks.FwCoreDlgControls.KeyboardControl();
			this.m_defaultFontsControl = new SIL.FieldWorks.FwCoreDlgControls.DefaultFontsControl();
			this.radioRTL = new System.Windows.Forms.RadioButton();
			this.radioLTR = new System.Windows.Forms.RadioButton();
			this.m_localeMenuButton = new SIL.FieldWorks.FwCoreDlgControls.LocaleMenuButton();
			this.helpProvider1 = new System.Windows.Forms.HelpProvider();
			tabPage1 = new System.Windows.Forms.TabPage();
			lblIdentifyLanguage = new System.Windows.Forms.Label();
			lblAbbrev = new System.Windows.Forms.Label();
			lblWsAbbrevInstructions = new System.Windows.Forms.Label();
			lblWritingSystemAbbrev = new System.Windows.Forms.Label();
			tabPage2 = new System.Windows.Forms.TabPage();
			lblRegionVariantInfo = new System.Windows.Forms.Label();
			lblRegionVariantInfoDesc = new System.Windows.Forms.Label();
			tabPage4 = new System.Windows.Forms.TabPage();
			label2 = new System.Windows.Forms.Label();
			lblFinishOrBack = new System.Windows.Forms.Label();
			lblKeyboardDesc = new System.Windows.Forms.Label();
			lblKeyboard = new System.Windows.Forms.Label();
			lblDirectionDesc = new System.Windows.Forms.Label();
			lblDirection = new System.Windows.Forms.Label();
			lblDefaultFonts = new System.Windows.Forms.Label();
			lblSimilarWSDesc = new System.Windows.Forms.Label();
			lblSimilarWS = new System.Windows.Forms.Label();
			tabPage3 = new System.Windows.Forms.TabPage();
			label1 = new System.Windows.Forms.Label();
			lblFontDesc = new System.Windows.Forms.Label();
			this.tabSteps.SuspendLayout();
			tabPage1.SuspendLayout();
			tabPage2.SuspendLayout();
			tabPage4.SuspendLayout();
			tabPage3.SuspendLayout();
			this.SuspendLayout();
			//
			// panSteps
			//
			resources.ApplyResources(this.panSteps, "panSteps");
			//
			// lblSteps
			//
			resources.ApplyResources(this.lblSteps, "lblSteps");
			//
			// m_btnBack
			//
			this.helpProvider1.SetHelpString(this.m_btnBack, resources.GetString("m_btnBack.HelpString"));
			resources.ApplyResources(this.m_btnBack, "m_btnBack");
			this.helpProvider1.SetShowHelp(this.m_btnBack, ((bool)(resources.GetObject("m_btnBack.ShowHelp"))));
			//
			// m_btnCancel
			//
			this.helpProvider1.SetHelpString(this.m_btnCancel, resources.GetString("m_btnCancel.HelpString"));
			resources.ApplyResources(this.m_btnCancel, "m_btnCancel");
			this.helpProvider1.SetShowHelp(this.m_btnCancel, ((bool)(resources.GetObject("m_btnCancel.ShowHelp"))));
			//
			// m_btnNext
			//
			this.helpProvider1.SetHelpString(this.m_btnNext, resources.GetString("m_btnNext.HelpString"));
			resources.ApplyResources(this.m_btnNext, "m_btnNext");
			this.helpProvider1.SetShowHelp(this.m_btnNext, ((bool)(resources.GetObject("m_btnNext.ShowHelp"))));
			//
			// m_btnHelp
			//
			this.helpProvider1.SetHelpString(this.m_btnHelp, resources.GetString("m_btnHelp.HelpString"));
			resources.ApplyResources(this.m_btnHelp, "m_btnHelp");
			this.helpProvider1.SetShowHelp(this.m_btnHelp, ((bool)(resources.GetObject("m_btnHelp.ShowHelp"))));
			this.m_btnHelp.Click += new System.EventHandler(this.m_btnHelp_Click);
			//
			// tabSteps
			//
			this.tabSteps.Controls.Add(tabPage1);
			this.tabSteps.Controls.Add(tabPage2);
			this.tabSteps.Controls.Add(tabPage3);
			this.tabSteps.Controls.Add(tabPage4);
			resources.ApplyResources(this.tabSteps, "tabSteps");
			//
			// tabPage1
			//
			tabPage1.Controls.Add(this.languageSetup);
			tabPage1.Controls.Add(lblIdentifyLanguage);
			resources.ApplyResources(tabPage1, "tabPage1");
			tabPage1.Name = "tabPage1";
			this.helpProvider1.SetShowHelp(tabPage1, ((bool)(resources.GetObject("tabPage1.ShowHelp"))));
			//
			// languageSetup
			//
			this.languageSetup.EthnologueCode = "";
			this.languageSetup.LanguageName = "";
			resources.ApplyResources(this.languageSetup, "languageSetup");
			this.languageSetup.Name = "languageSetup";
			this.helpProvider1.SetShowHelp(this.languageSetup, ((bool)(resources.GetObject("languageSetup.ShowHelp"))));
			this.languageSetup.StartedInModifyState = false;
			this.languageSetup.LanguageNameChanged += new System.EventHandler(this.languageSetup_LanguageNameChanged);
			//
			// lblIdentifyLanguage
			//
			resources.ApplyResources(lblIdentifyLanguage, "lblIdentifyLanguage");
			lblIdentifyLanguage.Name = "lblIdentifyLanguage";
			this.helpProvider1.SetShowHelp(lblIdentifyLanguage, ((bool)(resources.GetObject("lblIdentifyLanguage.ShowHelp"))));
			//
			// lblAbbrev
			//
			resources.ApplyResources(lblAbbrev, "lblAbbrev");
			lblAbbrev.Name = "lblAbbrev";
			this.helpProvider1.SetShowHelp(lblAbbrev, ((bool)(resources.GetObject("lblAbbrev.ShowHelp"))));
			//
			// lblWsAbbrevInstructions
			//
			resources.ApplyResources(lblWsAbbrevInstructions, "lblWsAbbrevInstructions");
			lblWsAbbrevInstructions.Name = "lblWsAbbrevInstructions";
			this.helpProvider1.SetShowHelp(lblWsAbbrevInstructions, ((bool)(resources.GetObject("lblWsAbbrevInstructions.ShowHelp"))));
			//
			// lblWritingSystemAbbrev
			//
			resources.ApplyResources(lblWritingSystemAbbrev, "lblWritingSystemAbbrev");
			lblWritingSystemAbbrev.Name = "lblWritingSystemAbbrev";
			this.helpProvider1.SetShowHelp(lblWritingSystemAbbrev, ((bool)(resources.GetObject("lblWritingSystemAbbrev.ShowHelp"))));
			//
			// tabPage2
			//
			tabPage2.Controls.Add(lblRegionVariantInfo);
			tabPage2.Controls.Add(this.lblMoreInfoDesc);
			tabPage2.Controls.Add(this.m_regionVariantControl);
			tabPage2.Controls.Add(this.btnAdvanced);
			tabPage2.Controls.Add(this.chkUsesIPA);
			tabPage2.Controls.Add(lblRegionVariantInfoDesc);
			tabPage2.Controls.Add(this.m_ShortWsName);
			tabPage2.Controls.Add(lblAbbrev);
			tabPage2.Controls.Add(lblWsAbbrevInstructions);
			tabPage2.Controls.Add(lblWritingSystemAbbrev);
			resources.ApplyResources(tabPage2, "tabPage2");
			tabPage2.Name = "tabPage2";
			this.helpProvider1.SetShowHelp(tabPage2, ((bool)(resources.GetObject("tabPage2.ShowHelp"))));
			//
			// lblRegionVariantInfo
			//
			resources.ApplyResources(lblRegionVariantInfo, "lblRegionVariantInfo");
			lblRegionVariantInfo.Name = "lblRegionVariantInfo";
			this.helpProvider1.SetShowHelp(lblRegionVariantInfo, ((bool)(resources.GetObject("lblRegionVariantInfo.ShowHelp"))));
			//
			// lblMoreInfoDesc
			//
			resources.ApplyResources(this.lblMoreInfoDesc, "lblMoreInfoDesc");
			this.lblMoreInfoDesc.Name = "lblMoreInfoDesc";
			this.helpProvider1.SetShowHelp(this.lblMoreInfoDesc, ((bool)(resources.GetObject("lblMoreInfoDesc.ShowHelp"))));
			//
			// m_regionVariantControl
			//
			this.m_regionVariantControl.BackColor = System.Drawing.SystemColors.Control;
			this.m_regionVariantControl.LangDef = null;
			resources.ApplyResources(this.m_regionVariantControl, "m_regionVariantControl");
			this.m_regionVariantControl.Name = "m_regionVariantControl";
			this.m_regionVariantControl.PropDlg = false;
			this.helpProvider1.SetShowHelp(this.m_regionVariantControl, ((bool)(resources.GetObject("m_regionVariantControl.ShowHelp"))));
			this.m_regionVariantControl.VariantName = "";
			//
			// btnAdvanced
			//
			this.helpProvider1.SetHelpString(this.btnAdvanced, resources.GetString("btnAdvanced.HelpString"));
			resources.ApplyResources(this.btnAdvanced, "btnAdvanced");
			this.btnAdvanced.Name = "btnAdvanced";
			this.helpProvider1.SetShowHelp(this.btnAdvanced, ((bool)(resources.GetObject("btnAdvanced.ShowHelp"))));
			this.btnAdvanced.Click += new System.EventHandler(this.btnAdvanced_Click);
			//
			// chkUsesIPA
			//
			resources.ApplyResources(this.chkUsesIPA, "chkUsesIPA");
			this.helpProvider1.SetHelpString(this.chkUsesIPA, resources.GetString("chkUsesIPA.HelpString"));
			this.chkUsesIPA.Name = "chkUsesIPA";
			this.helpProvider1.SetShowHelp(this.chkUsesIPA, ((bool)(resources.GetObject("chkUsesIPA.ShowHelp"))));
			this.chkUsesIPA.CheckedChanged += new System.EventHandler(this.chkUsesIPA_CheckedChanged);
			//
			// lblRegionVariantInfoDesc
			//
			resources.ApplyResources(lblRegionVariantInfoDesc, "lblRegionVariantInfoDesc");
			lblRegionVariantInfoDesc.Name = "lblRegionVariantInfoDesc";
			this.helpProvider1.SetShowHelp(lblRegionVariantInfoDesc, ((bool)(resources.GetObject("lblRegionVariantInfoDesc.ShowHelp"))));
			//
			// m_ShortWsName
			//
			this.helpProvider1.SetHelpString(this.m_ShortWsName, resources.GetString("m_ShortWsName.HelpString"));
			resources.ApplyResources(this.m_ShortWsName, "m_ShortWsName");
			this.m_ShortWsName.Name = "m_ShortWsName";
			this.helpProvider1.SetShowHelp(this.m_ShortWsName, ((bool)(resources.GetObject("m_ShortWsName.ShowHelp"))));
			this.m_ShortWsName.TextChanged += new System.EventHandler(this.m_ShortWsName_TextChanged);
			//
			// tabPage4
			//
			tabPage4.Controls.Add(label2);
			tabPage4.Controls.Add(lblFinishOrBack);
			tabPage4.Controls.Add(this.lblConverterDesc);
			tabPage4.Controls.Add(this.btnEncodingConverterNew);
			tabPage4.Controls.Add(this.cbEncodingConverter);
			tabPage4.Controls.Add(this.lblEncodingConverter);
			tabPage4.Controls.Add(this.m_KeyboardControl);
			tabPage4.Controls.Add(lblKeyboardDesc);
			tabPage4.Controls.Add(lblKeyboard);
			resources.ApplyResources(tabPage4, "tabPage4");
			tabPage4.Name = "tabPage4";
			this.helpProvider1.SetShowHelp(tabPage4, ((bool)(resources.GetObject("tabPage4.ShowHelp"))));
			//
			// label2
			//
			resources.ApplyResources(label2, "label2");
			label2.Name = "label2";
			this.helpProvider1.SetShowHelp(label2, ((bool)(resources.GetObject("label2.ShowHelp"))));
			//
			// lblFinishOrBack
			//
			resources.ApplyResources(lblFinishOrBack, "lblFinishOrBack");
			lblFinishOrBack.Name = "lblFinishOrBack";
			this.helpProvider1.SetShowHelp(lblFinishOrBack, ((bool)(resources.GetObject("lblFinishOrBack.ShowHelp"))));
			//
			// lblConverterDesc
			//
			resources.ApplyResources(this.lblConverterDesc, "lblConverterDesc");
			this.lblConverterDesc.Name = "lblConverterDesc";
			this.helpProvider1.SetShowHelp(this.lblConverterDesc, ((bool)(resources.GetObject("lblConverterDesc.ShowHelp"))));
			//
			// btnEncodingConverterNew
			//
			this.helpProvider1.SetHelpString(this.btnEncodingConverterNew, resources.GetString("btnEncodingConverterNew.HelpString"));
			resources.ApplyResources(this.btnEncodingConverterNew, "btnEncodingConverterNew");
			this.btnEncodingConverterNew.Name = "btnEncodingConverterNew";
			this.helpProvider1.SetShowHelp(this.btnEncodingConverterNew, ((bool)(resources.GetObject("btnEncodingConverterNew.ShowHelp"))));
			this.btnEncodingConverterNew.Click += new System.EventHandler(this.btnEncodingConverterNew_Click);
			//
			// cbEncodingConverter
			//
			this.cbEncodingConverter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider1.SetHelpString(this.cbEncodingConverter, resources.GetString("cbEncodingConverter.HelpString"));
			resources.ApplyResources(this.cbEncodingConverter, "cbEncodingConverter");
			this.cbEncodingConverter.Name = "cbEncodingConverter";
			this.helpProvider1.SetShowHelp(this.cbEncodingConverter, ((bool)(resources.GetObject("cbEncodingConverter.ShowHelp"))));
			this.cbEncodingConverter.Sorted = true;
			this.cbEncodingConverter.SelectedIndexChanged += new System.EventHandler(this.cbEncodingConverter_SelectedIndexChanged);
			//
			// lblEncodingConverter
			//
			resources.ApplyResources(this.lblEncodingConverter, "lblEncodingConverter");
			this.lblEncodingConverter.Name = "lblEncodingConverter";
			this.helpProvider1.SetShowHelp(this.lblEncodingConverter, ((bool)(resources.GetObject("lblEncodingConverter.ShowHelp"))));
			//
			// m_KeyboardControl
			//
			this.m_KeyboardControl.LangDef = null;
			resources.ApplyResources(this.m_KeyboardControl, "m_KeyboardControl");
			this.m_KeyboardControl.Name = "m_KeyboardControl";
			this.helpProvider1.SetShowHelp(this.m_KeyboardControl, ((bool)(resources.GetObject("m_KeyboardControl.ShowHelp"))));
			//
			// lblKeyboardDesc
			//
			resources.ApplyResources(lblKeyboardDesc, "lblKeyboardDesc");
			lblKeyboardDesc.Name = "lblKeyboardDesc";
			this.helpProvider1.SetShowHelp(lblKeyboardDesc, ((bool)(resources.GetObject("lblKeyboardDesc.ShowHelp"))));
			//
			// lblKeyboard
			//
			resources.ApplyResources(lblKeyboard, "lblKeyboard");
			lblKeyboard.Name = "lblKeyboard";
			this.helpProvider1.SetShowHelp(lblKeyboard, ((bool)(resources.GetObject("lblKeyboard.ShowHelp"))));
			//
			// lblDirectionDesc
			//
			resources.ApplyResources(lblDirectionDesc, "lblDirectionDesc");
			lblDirectionDesc.Name = "lblDirectionDesc";
			this.helpProvider1.SetShowHelp(lblDirectionDesc, ((bool)(resources.GetObject("lblDirectionDesc.ShowHelp"))));
			//
			// lblDirection
			//
			resources.ApplyResources(lblDirection, "lblDirection");
			lblDirection.Name = "lblDirection";
			this.helpProvider1.SetShowHelp(lblDirection, ((bool)(resources.GetObject("lblDirection.ShowHelp"))));
			//
			// lblDefaultFonts
			//
			resources.ApplyResources(lblDefaultFonts, "lblDefaultFonts");
			lblDefaultFonts.Name = "lblDefaultFonts";
			this.helpProvider1.SetShowHelp(lblDefaultFonts, ((bool)(resources.GetObject("lblDefaultFonts.ShowHelp"))));
			//
			// lblSimilarWSDesc
			//
			resources.ApplyResources(lblSimilarWSDesc, "lblSimilarWSDesc");
			lblSimilarWSDesc.Name = "lblSimilarWSDesc";
			this.helpProvider1.SetShowHelp(lblSimilarWSDesc, ((bool)(resources.GetObject("lblSimilarWSDesc.ShowHelp"))));
			//
			// lblSimilarWS
			//
			resources.ApplyResources(lblSimilarWS, "lblSimilarWS");
			lblSimilarWS.Name = "lblSimilarWS";
			this.helpProvider1.SetShowHelp(lblSimilarWS, ((bool)(resources.GetObject("lblSimilarWS.ShowHelp"))));
			//
			// tabPage3
			//
			tabPage3.Controls.Add(label1);
			tabPage3.Controls.Add(lblFontDesc);
			tabPage3.Controls.Add(this.m_defaultFontsControl);
			tabPage3.Controls.Add(this.radioRTL);
			tabPage3.Controls.Add(this.radioLTR);
			tabPage3.Controls.Add(lblDirectionDesc);
			tabPage3.Controls.Add(lblDirection);
			tabPage3.Controls.Add(lblDefaultFonts);
			tabPage3.Controls.Add(this.m_localeMenuButton);
			tabPage3.Controls.Add(lblSimilarWSDesc);
			tabPage3.Controls.Add(lblSimilarWS);
			resources.ApplyResources(tabPage3, "tabPage3");
			tabPage3.Name = "tabPage3";
			this.helpProvider1.SetShowHelp(tabPage3, ((bool)(resources.GetObject("tabPage3.ShowHelp"))));
			//
			// label1
			//
			resources.ApplyResources(label1, "label1");
			label1.Name = "label1";
			this.helpProvider1.SetShowHelp(label1, ((bool)(resources.GetObject("label1.ShowHelp"))));
			//
			// lblFontDesc
			//
			resources.ApplyResources(lblFontDesc, "lblFontDesc");
			lblFontDesc.Name = "lblFontDesc";
			this.helpProvider1.SetShowHelp(lblFontDesc, ((bool)(resources.GetObject("lblFontDesc.ShowHelp"))));
			//
			// m_defaultFontsControl
			//
			this.m_defaultFontsControl.DefaultHeadingFont = "";
			this.m_defaultFontsControl.DefaultNormalFont = "";
			this.m_defaultFontsControl.DefaultPublicationFont = "";
			this.m_defaultFontsControl.LangDef = null;
			resources.ApplyResources(this.m_defaultFontsControl, "m_defaultFontsControl");
			this.m_defaultFontsControl.Name = "m_defaultFontsControl";
			this.helpProvider1.SetShowHelp(this.m_defaultFontsControl, ((bool)(resources.GetObject("m_defaultFontsControl.ShowHelp"))));
			//
			// radioRTL
			//
			resources.ApplyResources(this.radioRTL, "radioRTL");
			this.helpProvider1.SetHelpString(this.radioRTL, resources.GetString("radioRTL.HelpString"));
			this.radioRTL.Name = "radioRTL";
			this.helpProvider1.SetShowHelp(this.radioRTL, ((bool)(resources.GetObject("radioRTL.ShowHelp"))));
			//
			// radioLTR
			//
			this.radioLTR.Checked = true;
			resources.ApplyResources(this.radioLTR, "radioLTR");
			this.helpProvider1.SetHelpString(this.radioLTR, resources.GetString("radioLTR.HelpString"));
			this.radioLTR.Name = "radioLTR";
			this.helpProvider1.SetShowHelp(this.radioLTR, ((bool)(resources.GetObject("radioLTR.ShowHelp"))));
			this.radioLTR.TabStop = true;
			this.radioLTR.CheckedChanged += new System.EventHandler(this.radioLTR_CheckedChanged);
			//
			// m_localeMenuButton
			//
			this.m_localeMenuButton.DisplayLocaleId = null;
			this.helpProvider1.SetHelpString(this.m_localeMenuButton, resources.GetString("m_localeMenuButton.HelpString"));
			resources.ApplyResources(this.m_localeMenuButton, "m_localeMenuButton");
			this.m_localeMenuButton.Name = "m_localeMenuButton";
			this.m_localeMenuButton.SelectedLocaleId = null;
			this.helpProvider1.SetShowHelp(this.m_localeMenuButton, ((bool)(resources.GetObject("m_localeMenuButton.ShowHelp"))));
			//
			// WritingSystemWizard
			//
			this.AcceptButton = null;
			resources.ApplyResources(this, "$this");
			this.Name = "WritingSystemWizard";
			this.helpProvider1.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			this.ShowInTaskbar = false;
			this.StepNames = new string[] {
		resources.GetString("$this.StepNames"),
		resources.GetString("$this.StepNames1"),
		resources.GetString("$this.StepNames2"),
		resources.GetString("$this.StepNames3")};
			this.StepPageCount = 4;
			this.Closing += new System.ComponentModel.CancelEventHandler(this.WritingSystemWizard_Closing);
			this.tabSteps.ResumeLayout(false);
			tabPage1.ResumeLayout(false);
			tabPage2.ResumeLayout(false);
			tabPage2.PerformLayout();
			tabPage4.ResumeLayout(false);
			tabPage3.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 25
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(ConfigureInterlinDialog));
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.optionsList = new System.Windows.Forms.ListBox();
			this.label3 = new System.Windows.Forms.Label();
			this.wsCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.moveDownButton = new System.Windows.Forms.Button();
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.moveUpButton = new System.Windows.Forms.Button();
			this.removeButton = new System.Windows.Forms.Button();
			this.addButton = new System.Windows.Forms.Button();
			this.helpButton = new System.Windows.Forms.Button();
			this.cancelButton = new System.Windows.Forms.Button();
			this.currentList = new System.Windows.Forms.ListView();
			this.LineColumn = new System.Windows.Forms.ColumnHeader();
			this.InfoColumn = new System.Windows.Forms.ColumnHeader();
			this.label4 = new System.Windows.Forms.Label();
			this.okButton = new System.Windows.Forms.Button();
			this.SuspendLayout();
			//
			// label1
			//
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			//
			// label2
			//
			resources.ApplyResources(this.label2, "label2");
			this.label2.Name = "label2";
			//
			// optionsList
			//
			resources.ApplyResources(this.optionsList, "optionsList");
			this.optionsList.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
			this.optionsList.Name = "optionsList";
			this.optionsList.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.optionsList_DrawItem);
			this.optionsList.DoubleClick += new System.EventHandler(this.addButton_Click);
			//
			// label3
			//
			resources.ApplyResources(this.label3, "label3");
			this.label3.Name = "label3";
			//
			// wsCombo
			//
			this.wsCombo.AllowSpaceInEditBox = false;
			resources.ApplyResources(this.wsCombo, "wsCombo");
			this.wsCombo.Name = "wsCombo";
			this.wsCombo.SelectedIndexChanged += new System.EventHandler(this.wsCombo_SelectedIndexChanged);
			//
			// moveDownButton
			//
			resources.ApplyResources(this.moveDownButton, "moveDownButton");
			this.moveDownButton.ImageList = this.imageList1;
			this.moveDownButton.Name = "moveDownButton";
			this.moveDownButton.Click += new System.EventHandler(this.moveDownButton_Click);
			//
			// imageList1
			//
			this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			this.imageList1.TransparentColor = System.Drawing.Color.Fuchsia;
			this.imageList1.Images.SetKeyName(0, "LargeUpArrow.bmp");
			this.imageList1.Images.SetKeyName(1, "LargeDownArrow.bmp");
			//
			// moveUpButton
			//
			resources.ApplyResources(this.moveUpButton, "moveUpButton");
			this.moveUpButton.ImageList = this.imageList1;
			this.moveUpButton.Name = "moveUpButton";
			this.moveUpButton.Click += new System.EventHandler(this.moveUpButton_Click);
			//
			// removeButton
			//
			resources.ApplyResources(this.removeButton, "removeButton");
			this.removeButton.Name = "removeButton";
			this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
			//
			// addButton
			//
			resources.ApplyResources(this.addButton, "addButton");
			this.addButton.Name = "addButton";
			this.addButton.Click += new System.EventHandler(this.addButton_Click);
			//
			// helpButton
			//
			resources.ApplyResources(this.helpButton, "helpButton");
			this.helpButton.Name = "helpButton";
			this.helpButton.Click += new System.EventHandler(this.helpButton_Click);
			//
			// cancelButton
			//
			resources.ApplyResources(this.cancelButton, "cancelButton");
			this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cancelButton.Name = "cancelButton";
			//
			// currentList
			//
			resources.ApplyResources(this.currentList, "currentList");
			this.currentList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			this.LineColumn,
			this.InfoColumn});
			this.currentList.FullRowSelect = true;
			this.currentList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
			this.currentList.HideSelection = false;
			this.currentList.MultiSelect = false;
			this.currentList.Name = "currentList";
			this.currentList.OwnerDraw = true;
			this.currentList.ShowItemToolTips = true;
			this.currentList.UseCompatibleStateImageBehavior = false;
			this.currentList.View = System.Windows.Forms.View.Details;
			this.currentList.DrawItem += new System.Windows.Forms.DrawListViewItemEventHandler(this.currentList_DrawItem);
			this.currentList.DoubleClick += new System.EventHandler(this.removeButton_Click);
			//
			// LineColumn
			//
			resources.ApplyResources(this.LineColumn, "LineColumn");
			//
			// InfoColumn
			//
			resources.ApplyResources(this.InfoColumn, "InfoColumn");
			//
			// label4
			//
			resources.ApplyResources(this.label4, "label4");
			this.label4.Name = "label4";
			//
			// okButton
			//
			resources.ApplyResources(this.okButton, "okButton");
			this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.okButton.Name = "okButton";
			//
			// ConfigureInterlinDialog
			//
			this.AcceptButton = this.okButton;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.cancelButton;
			this.Controls.Add(this.label3);
			this.Controls.Add(this.wsCombo);
			this.Controls.Add(this.moveDownButton);
			this.Controls.Add(this.moveUpButton);
			this.Controls.Add(this.removeButton);
			this.Controls.Add(this.addButton);
			this.Controls.Add(this.helpButton);
			this.Controls.Add(this.cancelButton);
			this.Controls.Add(this.currentList);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.okButton);
			this.Controls.Add(this.optionsList);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label1);
			this.Name = "ConfigureInterlinDialog";
			this.ResumeLayout(false);

		}
Ejemplo n.º 26
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.Windows.Forms.Button selectFileButton;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ConverterTest));
			System.Windows.Forms.Label label2;
			System.Windows.Forms.Label label3;
			System.Windows.Forms.HelpProvider helpProvider1;
			this.outputFontCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.convertButton = new System.Windows.Forms.Button();
			this.OutputPanel = new System.Windows.Forms.Panel();
			this.saveFileButton = new System.Windows.Forms.Button();
			this.txtInputFile = new System.Windows.Forms.TextBox();
			this.toolTipInputFile = new System.Windows.Forms.ToolTip(this.components);
			selectFileButton = new System.Windows.Forms.Button();
			label2 = new System.Windows.Forms.Label();
			label3 = new System.Windows.Forms.Label();
			helpProvider1 = new HelpProvider();
			this.SuspendLayout();
			//
			// selectFileButton
			//
			helpProvider1.SetHelpString(selectFileButton, resources.GetString("selectFileButton.HelpString"));
			resources.ApplyResources(selectFileButton, "selectFileButton");
			selectFileButton.Name = "selectFileButton";
			helpProvider1.SetShowHelp(selectFileButton, ((bool)(resources.GetObject("selectFileButton.ShowHelp"))));
			selectFileButton.Click += new System.EventHandler(this.selectFileButton_Click);
			//
			// label2
			//
			resources.ApplyResources(label2, "label2");
			helpProvider1.SetHelpString(label2, resources.GetString("label2.HelpString"));
			label2.Name = "label2";
			helpProvider1.SetShowHelp(label2, ((bool)(resources.GetObject("label2.ShowHelp"))));
			//
			// outputFontCombo
			//
			resources.ApplyResources(this.outputFontCombo, "outputFontCombo");
			this.outputFontCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			helpProvider1.SetHelpString(this.outputFontCombo, resources.GetString("outputFontCombo.HelpString"));
			this.outputFontCombo.Name = "outputFontCombo";
			helpProvider1.SetShowHelp(this.outputFontCombo, ((bool)(resources.GetObject("outputFontCombo.ShowHelp"))));
			this.outputFontCombo.SelectedIndexChanged += new System.EventHandler(this.outputFontCombo_SelectedIndexChanged);
			//
			// convertButton
			//
			resources.ApplyResources(this.convertButton, "convertButton");
			helpProvider1.SetHelpString(this.convertButton, resources.GetString("convertButton.HelpString"));
			this.convertButton.Name = "convertButton";
			helpProvider1.SetShowHelp(this.convertButton, ((bool)(resources.GetObject("convertButton.ShowHelp"))));
			this.convertButton.Click += new System.EventHandler(this.convertButton_Click);
			//
			// label3
			//
			resources.ApplyResources(label3, "label3");
			label3.Name = "label3";
			helpProvider1.SetShowHelp(label3, ((bool)(resources.GetObject("label3.ShowHelp"))));
			//
			// OutputPanel
			//
			resources.ApplyResources(this.OutputPanel, "OutputPanel");
			this.OutputPanel.BackColor = System.Drawing.SystemColors.Control;
			this.OutputPanel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			helpProvider1.SetHelpString(this.OutputPanel, resources.GetString("OutputPanel.HelpString"));
			this.OutputPanel.Name = "OutputPanel";
			helpProvider1.SetShowHelp(this.OutputPanel, ((bool)(resources.GetObject("OutputPanel.ShowHelp"))));
			//
			// saveFileButton
			//
			resources.ApplyResources(this.saveFileButton, "saveFileButton");
			helpProvider1.SetHelpString(this.saveFileButton, resources.GetString("saveFileButton.HelpString"));
			this.saveFileButton.Name = "saveFileButton";
			helpProvider1.SetShowHelp(this.saveFileButton, ((bool)(resources.GetObject("saveFileButton.ShowHelp"))));
			this.saveFileButton.Click += new System.EventHandler(this.saveFileButton_Click);
			//
			// txtInputFile
			//
			resources.ApplyResources(this.txtInputFile, "txtInputFile");
			this.txtInputFile.BackColor = System.Drawing.SystemColors.Window;
			this.txtInputFile.Cursor = System.Windows.Forms.Cursors.Arrow;
			this.txtInputFile.Name = "txtInputFile";
			this.txtInputFile.ReadOnly = true;
			helpProvider1.SetShowHelp(this.txtInputFile, ((bool)(resources.GetObject("txtInputFile.ShowHelp"))));
			this.txtInputFile.TabStop = false;
			//
			// ConverterTest
			//
			this.Controls.Add(this.txtInputFile);
			this.Controls.Add(this.convertButton);
			this.Controls.Add(this.saveFileButton);
			this.Controls.Add(this.OutputPanel);
			this.Controls.Add(label3);
			this.Controls.Add(label2);
			this.Controls.Add(this.outputFontCombo);
			this.Controls.Add(selectFileButton);
			this.Name = "ConverterTest";
			helpProvider1.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			resources.ApplyResources(this, "$this");
			this.Load += new System.EventHandler(this.ConverterTest_Load);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Ejemplo n.º 27
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(BulkEditBar));
			this.m_operationLabel = new System.Windows.Forms.Label();
			this.m_operationsTabControl = new SIL.FieldWorks.Common.Widgets.VSTabControl();
			this.m_listChoiceTab = new System.Windows.Forms.TabPage();
			this.m_bulkEditIconButton = new System.Windows.Forms.Button();
			this.m_imageList16x16 = new System.Windows.Forms.ImageList(this.components);
			this.m_bulkEditOperationLabel = new System.Windows.Forms.Label();
			this.m_listChoiceChangeToCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label3 = new System.Windows.Forms.Label();
			this.m_listChoiceTargetCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label2 = new System.Windows.Forms.Label();
			this.m_closeButton = new System.Windows.Forms.Button();
			this.m_bulkCopyTab = new System.Windows.Forms.TabPage();
			this.m_bulkCopySourceCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label4 = new System.Windows.Forms.Label();
			this.m_bulkCopyTargetCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label5 = new System.Windows.Forms.Label();
			this.m_clickCopyTab = new System.Windows.Forms.TabPage();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.m_clickCopySepBox = new SIL.FieldWorks.Common.Widgets.FwTextBox();
			this.m_clickCopyOverwriteButton = new System.Windows.Forms.RadioButton();
			this.m_clickCopyAppendButton = new System.Windows.Forms.RadioButton();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.m_clickCopyReorderButton = new System.Windows.Forms.RadioButton();
			this.m_clickCopyWordButton = new System.Windows.Forms.RadioButton();
			this.m_clickCopyTargetCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label6 = new System.Windows.Forms.Label();
			this.m_transduceTab = new System.Windows.Forms.TabPage();
			this.m_transduceSetupButton = new System.Windows.Forms.Button();
			this.m_transduceSourceCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label7 = new System.Windows.Forms.Label();
			this.m_transduceTargetCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label8 = new System.Windows.Forms.Label();
			this.m_transduceProcessorCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label9 = new System.Windows.Forms.Label();
			this.m_findReplaceTab = new System.Windows.Forms.TabPage();
			this.m_findReplaceSetupButton = new System.Windows.Forms.Button();
			this.m_findReplaceTargetCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label12 = new System.Windows.Forms.Label();
			this.m_deleteTab = new System.Windows.Forms.TabPage();
			this.label13 = new System.Windows.Forms.Label();
			this.m_deleteWhatCombo = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_imageList16x14 = new System.Windows.Forms.ImageList(this.components);
			this.m_helpButton = new System.Windows.Forms.Button();
			this.m_previewButton = new System.Windows.Forms.Button();
			this.m_ApplyButton = new System.Windows.Forms.Button();
			this.m_operationsTabControl.SuspendLayout();
			this.m_listChoiceTab.SuspendLayout();
			this.m_bulkCopyTab.SuspendLayout();
			this.m_clickCopyTab.SuspendLayout();
			this.groupBox2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_clickCopySepBox)).BeginInit();
			this.groupBox1.SuspendLayout();
			this.m_transduceTab.SuspendLayout();
			this.m_findReplaceTab.SuspendLayout();
			this.m_deleteTab.SuspendLayout();
			this.SuspendLayout();
			//
			// m_operationLabel
			//
			resources.ApplyResources(this.m_operationLabel, "m_operationLabel");
			this.m_operationLabel.BackColor = System.Drawing.Color.Transparent;
			this.m_operationLabel.Name = "m_operationLabel";
			//
			// m_operationsTabControl
			//
			resources.ApplyResources(this.m_operationsTabControl, "m_operationsTabControl");
			this.m_operationsTabControl.Controls.Add(this.m_listChoiceTab);
			this.m_operationsTabControl.Controls.Add(this.m_bulkCopyTab);
			this.m_operationsTabControl.Controls.Add(this.m_clickCopyTab);
			this.m_operationsTabControl.Controls.Add(this.m_transduceTab);
			this.m_operationsTabControl.Controls.Add(this.m_findReplaceTab);
			this.m_operationsTabControl.Controls.Add(this.m_deleteTab);
			this.m_operationsTabControl.Name = "m_operationsTabControl";
			this.m_operationsTabControl.SelectedIndex = 0;
			//
			// m_listChoiceTab
			//
			this.m_listChoiceTab.Controls.Add(this.m_bulkEditIconButton);
			this.m_listChoiceTab.Controls.Add(this.m_operationLabel);
			this.m_listChoiceTab.Controls.Add(this.m_bulkEditOperationLabel);
			this.m_listChoiceTab.Controls.Add(this.m_listChoiceChangeToCombo);
			this.m_listChoiceTab.Controls.Add(this.label3);
			this.m_listChoiceTab.Controls.Add(this.m_listChoiceTargetCombo);
			this.m_listChoiceTab.Controls.Add(this.label2);
			this.m_listChoiceTab.Controls.Add(this.m_closeButton);
			resources.ApplyResources(this.m_listChoiceTab, "m_listChoiceTab");
			this.m_listChoiceTab.Name = "m_listChoiceTab";
			this.m_listChoiceTab.UseVisualStyleBackColor = true;
			this.m_listChoiceTab.Enter += new System.EventHandler(this.m_listChoiceTab_Enter);
			//
			// m_bulkEditIconButton
			//
			this.m_bulkEditIconButton.BackColor = System.Drawing.Color.Transparent;
			resources.ApplyResources(this.m_bulkEditIconButton, "m_bulkEditIconButton");
			this.m_bulkEditIconButton.ImageList = this.m_imageList16x16;
			this.m_bulkEditIconButton.Name = "m_bulkEditIconButton";
			this.m_bulkEditIconButton.UseVisualStyleBackColor = false;
			//
			// m_imageList16x16
			//
			this.m_imageList16x16.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_imageList16x16.ImageStream")));
			this.m_imageList16x16.TransparentColor = System.Drawing.Color.Fuchsia;
			this.m_imageList16x16.Images.SetKeyName(0, "BulkEditIcon.bmp");
			//
			// m_bulkEditOperationLabel
			//
			resources.ApplyResources(this.m_bulkEditOperationLabel, "m_bulkEditOperationLabel");
			this.m_bulkEditOperationLabel.BackColor = System.Drawing.Color.Transparent;
			this.m_bulkEditOperationLabel.ForeColor = System.Drawing.Color.Blue;
			this.m_bulkEditOperationLabel.Name = "m_bulkEditOperationLabel";
			//
			// m_listChoiceChangeToCombo
			//
			this.m_listChoiceChangeToCombo.AllowSpaceInEditBox = false;
			this.m_listChoiceChangeToCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_listChoiceChangeToCombo, "m_listChoiceChangeToCombo");
			this.m_listChoiceChangeToCombo.Name = "m_listChoiceChangeToCombo";
			//
			// label3
			//
			resources.ApplyResources(this.label3, "label3");
			this.label3.Name = "label3";
			//
			// m_listChoiceTargetCombo
			//
			this.m_listChoiceTargetCombo.AllowSpaceInEditBox = false;
			this.m_listChoiceTargetCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_listChoiceTargetCombo, "m_listChoiceTargetCombo");
			this.m_listChoiceTargetCombo.Name = "m_listChoiceTargetCombo";
			//
			// label2
			//
			resources.ApplyResources(this.label2, "label2");
			this.label2.Name = "label2";
			//
			// m_closeButton
			//
			resources.ApplyResources(this.m_closeButton, "m_closeButton");
			this.m_closeButton.ForeColor = System.Drawing.SystemColors.Control;
			this.m_closeButton.Name = "m_closeButton";
			//
			// m_bulkCopyTab
			//
			this.m_bulkCopyTab.Controls.Add(this.m_bulkCopySourceCombo);
			this.m_bulkCopyTab.Controls.Add(this.label4);
			this.m_bulkCopyTab.Controls.Add(this.m_bulkCopyTargetCombo);
			this.m_bulkCopyTab.Controls.Add(this.label5);
			resources.ApplyResources(this.m_bulkCopyTab, "m_bulkCopyTab");
			this.m_bulkCopyTab.ForeColor = System.Drawing.SystemColors.ControlText;
			this.m_bulkCopyTab.Name = "m_bulkCopyTab";
			this.m_bulkCopyTab.UseVisualStyleBackColor = true;
			this.m_bulkCopyTab.Enter += new System.EventHandler(this.m_bulkCopyTab_Enter);
			//
			// m_bulkCopySourceCombo
			//
			this.m_bulkCopySourceCombo.AllowSpaceInEditBox = false;
			this.m_bulkCopySourceCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_bulkCopySourceCombo, "m_bulkCopySourceCombo");
			this.m_bulkCopySourceCombo.Name = "m_bulkCopySourceCombo";
			//
			// label4
			//
			resources.ApplyResources(this.label4, "label4");
			this.label4.Name = "label4";
			//
			// m_bulkCopyTargetCombo
			//
			this.m_bulkCopyTargetCombo.AllowSpaceInEditBox = false;
			this.m_bulkCopyTargetCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_bulkCopyTargetCombo, "m_bulkCopyTargetCombo");
			this.m_bulkCopyTargetCombo.Name = "m_bulkCopyTargetCombo";
			//
			// label5
			//
			resources.ApplyResources(this.label5, "label5");
			this.label5.Name = "label5";
			//
			// m_clickCopyTab
			//
			this.m_clickCopyTab.Controls.Add(this.groupBox2);
			this.m_clickCopyTab.Controls.Add(this.groupBox1);
			this.m_clickCopyTab.Controls.Add(this.m_clickCopyTargetCombo);
			this.m_clickCopyTab.Controls.Add(this.label6);
			resources.ApplyResources(this.m_clickCopyTab, "m_clickCopyTab");
			this.m_clickCopyTab.Name = "m_clickCopyTab";
			this.m_clickCopyTab.UseVisualStyleBackColor = true;
			this.m_clickCopyTab.Enter += new System.EventHandler(this.m_clickCopyTab_Enter);
			//
			// groupBox2
			//
			this.groupBox2.Controls.Add(this.m_clickCopySepBox);
			this.groupBox2.Controls.Add(this.m_clickCopyOverwriteButton);
			this.groupBox2.Controls.Add(this.m_clickCopyAppendButton);
			resources.ApplyResources(this.groupBox2, "groupBox2");
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.TabStop = false;
			//
			// m_clickCopySepBox
			//
			this.m_clickCopySepBox.AdjustStringHeight = true;
			this.m_clickCopySepBox.BackColor = System.Drawing.SystemColors.Window;
			this.m_clickCopySepBox.controlID = null;
			resources.ApplyResources(this.m_clickCopySepBox, "m_clickCopySepBox");
			this.m_clickCopySepBox.HasBorder = true;
			this.m_clickCopySepBox.Name = "m_clickCopySepBox";
			this.m_clickCopySepBox.SelectionLength = 0;
			this.m_clickCopySepBox.SelectionStart = 0;
			//
			// m_clickCopyOverwriteButton
			//
			resources.ApplyResources(this.m_clickCopyOverwriteButton, "m_clickCopyOverwriteButton");
			this.m_clickCopyOverwriteButton.Name = "m_clickCopyOverwriteButton";
			//
			// m_clickCopyAppendButton
			//
			resources.ApplyResources(this.m_clickCopyAppendButton, "m_clickCopyAppendButton");
			this.m_clickCopyAppendButton.Checked = true;
			this.m_clickCopyAppendButton.Name = "m_clickCopyAppendButton";
			this.m_clickCopyAppendButton.TabStop = true;
			//
			// groupBox1
			//
			this.groupBox1.Controls.Add(this.m_clickCopyReorderButton);
			this.groupBox1.Controls.Add(this.m_clickCopyWordButton);
			resources.ApplyResources(this.groupBox1, "groupBox1");
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.TabStop = false;
			//
			// m_clickCopyReorderButton
			//
			resources.ApplyResources(this.m_clickCopyReorderButton, "m_clickCopyReorderButton");
			this.m_clickCopyReorderButton.Name = "m_clickCopyReorderButton";
			//
			// m_clickCopyWordButton
			//
			resources.ApplyResources(this.m_clickCopyWordButton, "m_clickCopyWordButton");
			this.m_clickCopyWordButton.Checked = true;
			this.m_clickCopyWordButton.Name = "m_clickCopyWordButton";
			this.m_clickCopyWordButton.TabStop = true;
			//
			// m_clickCopyTargetCombo
			//
			this.m_clickCopyTargetCombo.AllowSpaceInEditBox = false;
			this.m_clickCopyTargetCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_clickCopyTargetCombo, "m_clickCopyTargetCombo");
			this.m_clickCopyTargetCombo.Name = "m_clickCopyTargetCombo";
			this.m_clickCopyTargetCombo.SelectedIndexChanged += new System.EventHandler(this.m_clickCopyTargetCombo_SelectedIndexChanged);
			//
			// label6
			//
			resources.ApplyResources(this.label6, "label6");
			this.label6.Name = "label6";
			//
			// m_transduceTab
			//
			this.m_transduceTab.Controls.Add(this.m_transduceSetupButton);
			this.m_transduceTab.Controls.Add(this.m_transduceSourceCombo);
			this.m_transduceTab.Controls.Add(this.label7);
			this.m_transduceTab.Controls.Add(this.m_transduceTargetCombo);
			this.m_transduceTab.Controls.Add(this.label8);
			this.m_transduceTab.Controls.Add(this.m_transduceProcessorCombo);
			this.m_transduceTab.Controls.Add(this.label9);
			resources.ApplyResources(this.m_transduceTab, "m_transduceTab");
			this.m_transduceTab.Name = "m_transduceTab";
			this.m_transduceTab.UseVisualStyleBackColor = true;
			this.m_transduceTab.Enter += new System.EventHandler(this.m_transduceTab_Enter);
			//
			// m_transduceSetupButton
			//
			resources.ApplyResources(this.m_transduceSetupButton, "m_transduceSetupButton");
			this.m_transduceSetupButton.Name = "m_transduceSetupButton";
			this.m_transduceSetupButton.Click += new System.EventHandler(this.m_transduceSetupButton_Click);
			//
			// m_transduceSourceCombo
			//
			this.m_transduceSourceCombo.AllowSpaceInEditBox = false;
			this.m_transduceSourceCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_transduceSourceCombo, "m_transduceSourceCombo");
			this.m_transduceSourceCombo.Name = "m_transduceSourceCombo";
			//
			// label7
			//
			resources.ApplyResources(this.label7, "label7");
			this.label7.Name = "label7";
			//
			// m_transduceTargetCombo
			//
			this.m_transduceTargetCombo.AllowSpaceInEditBox = false;
			this.m_transduceTargetCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_transduceTargetCombo, "m_transduceTargetCombo");
			this.m_transduceTargetCombo.Name = "m_transduceTargetCombo";
			//
			// label8
			//
			resources.ApplyResources(this.label8, "label8");
			this.label8.Name = "label8";
			//
			// m_transduceProcessorCombo
			//
			this.m_transduceProcessorCombo.AllowSpaceInEditBox = false;
			this.m_transduceProcessorCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_transduceProcessorCombo.Items.AddRange(new object[] {
			resources.GetString("m_transduceProcessorCombo.Items"),
			resources.GetString("m_transduceProcessorCombo.Items1")});
			resources.ApplyResources(this.m_transduceProcessorCombo, "m_transduceProcessorCombo");
			this.m_transduceProcessorCombo.Name = "m_transduceProcessorCombo";
			//
			// label9
			//
			resources.ApplyResources(this.label9, "label9");
			this.label9.Name = "label9";
			//
			// m_findReplaceTab
			//
			this.m_findReplaceTab.Controls.Add(this.m_findReplaceSetupButton);
			this.m_findReplaceTab.Controls.Add(this.m_findReplaceTargetCombo);
			this.m_findReplaceTab.Controls.Add(this.label12);
			resources.ApplyResources(this.m_findReplaceTab, "m_findReplaceTab");
			this.m_findReplaceTab.Name = "m_findReplaceTab";
			this.m_findReplaceTab.UseVisualStyleBackColor = true;
			this.m_findReplaceTab.Enter += new System.EventHandler(this.m_findReplaceTab_Enter);
			//
			// m_findReplaceSetupButton
			//
			resources.ApplyResources(this.m_findReplaceSetupButton, "m_findReplaceSetupButton");
			this.m_findReplaceSetupButton.Name = "m_findReplaceSetupButton";
			this.m_findReplaceSetupButton.Click += new System.EventHandler(this.m_findReplaceSetupButton_Click);
			//
			// m_findReplaceTargetCombo
			//
			this.m_findReplaceTargetCombo.AllowSpaceInEditBox = false;
			this.m_findReplaceTargetCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_findReplaceTargetCombo, "m_findReplaceTargetCombo");
			this.m_findReplaceTargetCombo.Name = "m_findReplaceTargetCombo";
			this.m_findReplaceTargetCombo.SelectedIndexChanged += new System.EventHandler(this.m_findReplaceTargetCombo_SelectedIndexChanged);
			//
			// label12
			//
			resources.ApplyResources(this.label12, "label12");
			this.label12.Name = "label12";
			//
			// m_deleteTab
			//
			this.m_deleteTab.Controls.Add(this.label13);
			this.m_deleteTab.Controls.Add(this.m_deleteWhatCombo);
			resources.ApplyResources(this.m_deleteTab, "m_deleteTab");
			this.m_deleteTab.Name = "m_deleteTab";
			this.m_deleteTab.UseVisualStyleBackColor = true;
			this.m_deleteTab.Enter += new System.EventHandler(this.m_deleteTab_Enter);
			//
			// label13
			//
			resources.ApplyResources(this.label13, "label13");
			this.label13.Name = "label13";
			//
			// m_deleteWhatCombo
			//
			this.m_deleteWhatCombo.AllowSpaceInEditBox = false;
			this.m_deleteWhatCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			resources.ApplyResources(this.m_deleteWhatCombo, "m_deleteWhatCombo");
			this.m_deleteWhatCombo.Name = "m_deleteWhatCombo";
			this.m_deleteWhatCombo.SelectedIndexChanged += new System.EventHandler(this.m_deleteWhatCombo_SelectedIndexChanged);
			//
			// m_imageList16x14
			//
			this.m_imageList16x14.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("m_imageList16x14.ImageStream")));
			this.m_imageList16x14.TransparentColor = System.Drawing.Color.Magenta;
			this.m_imageList16x14.Images.SetKeyName(0, "");
			//
			// m_helpButton
			//
			this.m_helpButton.ForeColor = System.Drawing.SystemColors.ControlText;
			resources.ApplyResources(this.m_helpButton, "m_helpButton");
			this.m_helpButton.Name = "m_helpButton";
			this.m_helpButton.Click += new System.EventHandler(this.m_helpButton_Click);
			//
			// m_previewButton
			//
			this.m_previewButton.ForeColor = System.Drawing.SystemColors.ControlText;
			resources.ApplyResources(this.m_previewButton, "m_previewButton");
			this.m_previewButton.Name = "m_previewButton";
			//
			// m_ApplyButton
			//
			this.m_ApplyButton.ForeColor = System.Drawing.SystemColors.ControlText;
			resources.ApplyResources(this.m_ApplyButton, "m_ApplyButton");
			this.m_ApplyButton.Name = "m_ApplyButton";
			//
			// BulkEditBar
			//
			this.Controls.Add(this.m_ApplyButton);
			this.Controls.Add(this.m_previewButton);
			this.Controls.Add(this.m_helpButton);
			this.Controls.Add(this.m_operationsTabControl);
			this.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Name = "BulkEditBar";
			resources.ApplyResources(this, "$this");
			this.m_operationsTabControl.ResumeLayout(false);
			this.m_listChoiceTab.ResumeLayout(false);
			this.m_listChoiceTab.PerformLayout();
			this.m_bulkCopyTab.ResumeLayout(false);
			this.m_bulkCopyTab.PerformLayout();
			this.m_clickCopyTab.ResumeLayout(false);
			this.m_clickCopyTab.PerformLayout();
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_clickCopySepBox)).EndInit();
			this.groupBox1.ResumeLayout(false);
			this.groupBox1.PerformLayout();
			this.m_transduceTab.ResumeLayout(false);
			this.m_transduceTab.PerformLayout();
			this.m_findReplaceTab.ResumeLayout(false);
			this.m_findReplaceTab.PerformLayout();
			this.m_deleteTab.ResumeLayout(false);
			this.m_deleteTab.PerformLayout();
			this.ResumeLayout(false);

		}
Ejemplo n.º 28
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Load the given combobox and select the selected project, if any.
		/// </summary>
		/// <param name="cbo">The combo box to load</param>
		/// <param name="selectedProj">The short name of the project to select</param>
		/// ------------------------------------------------------------------------------------
		private void LoadParatextProjectCombo(FwOverrideComboBox cbo, string selectedProj)
		{
			// Initialize the combobox with a sorted list of language projects:
			//   language name (project short name)
			List<PTProject> projectList = new List<PTProject>();
			foreach (PTProject project in m_PTLangProj)
				projectList.Add(project);

			projectList.Sort(delegate(PTProject x, PTProject y)
				 { return x.ToString().CompareTo(y.ToString()); });
			cbo.Items.AddRange(projectList.ToArray());

			// Select the appropriate project in the list.
			if (!string.IsNullOrEmpty(selectedProj))
			{
				for (int i = 0; i < cbo.Items.Count; i++)
				{
					if (selectedProj == ((PTProject)cbo.Items[i]).ShortName)
						cbo.SelectedIndex = i;
				}
			}

			// If no project is set, select the first one.
			if (cbo.SelectedIndex < 0 && cbo.Items.Count > 0)
				cbo.SelectedIndex = 0;
		}
Ejemplo n.º 29
0
		/// ------------------------------------------------------------------------------------
		/// <summary>
		/// Checks the contents of the project combo. We call this after we attempt to assign
		/// the projName in the import settings to the current selection in the project combo
		/// box.
		/// </summary>
		/// <param name="projName">Name of the project in the import settings.</param>
		/// <param name="projCombo">The project combo.</param>
		/// <param name="domain">The import domain.</param>
		/// ------------------------------------------------------------------------------------
		private void CheckProjectCombo(string projName, FwOverrideComboBox projCombo,
			ImportDomain domain)
		{
			string ptShortName = GetPTShortName(projCombo);

			// if the project name was set successfully to the contents of the short name from the combobox.
			if (projName != null && projName.Equals(ptShortName))
			{
				// no problems with the selected item. We're finished.
				return;
			}

			// If the project name is null but the selected project is "none" then the selected
			// item is fine. The selected project is "none" when the domain in back translation
			// or notes and the selected index in the combobox is 0.
			if ((domain == ImportDomain.BackTrans || domain == ImportDomain.Annotations) &&
				projCombo.SelectedIndex == 0)
			{
				return;
			}

			// However, if the project name is null and the selected item in the combo box
			// is something else, then we need to throw an exception so that the user will
			// be notified about a problem with the project that they selected.
			throw new ParatextLoadException(string.Format(TeResourceHelper.GetResourceString(
				"kstidParatextProjectLoadFailure"), ptShortName), null);
		}
Ejemplo n.º 30
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(SimpleIntegerMatchDlg));
			this.m_comboMatchType = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_labelAnd = new System.Windows.Forms.Label();
			this.m_cancelButton = new System.Windows.Forms.Button();
			this.m_okButton = new System.Windows.Forms.Button();
			this.m_nudVal1 = new System.Windows.Forms.NumericUpDown();
			this.m_nudVal2 = new System.Windows.Forms.NumericUpDown();
			this.m_helpButton = new System.Windows.Forms.Button();
			this.helpProvider1 = new HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.m_nudVal1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.m_nudVal2)).BeginInit();
			this.SuspendLayout();
			//
			// m_comboMatchType
			//
			this.m_comboMatchType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_comboMatchType.Items.AddRange(new object[] {
			resources.GetString("m_comboMatchType.Items"),
			resources.GetString("m_comboMatchType.Items1"),
			resources.GetString("m_comboMatchType.Items2"),
			resources.GetString("m_comboMatchType.Items3"),
			resources.GetString("m_comboMatchType.Items4"),
			resources.GetString("m_comboMatchType.Items5"),
			resources.GetString("m_comboMatchType.Items6")});
			resources.ApplyResources(this.m_comboMatchType, "m_comboMatchType");
			this.m_comboMatchType.Name = "m_comboMatchType";
			this.m_comboMatchType.SelectedIndexChanged += new System.EventHandler(this.m_comboMatchType_SelectedIndexChanged);
			//
			// m_labelAnd
			//
			resources.ApplyResources(this.m_labelAnd, "m_labelAnd");
			this.m_labelAnd.Name = "m_labelAnd";
			//
			// m_cancelButton
			//
			this.m_cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			resources.ApplyResources(this.m_cancelButton, "m_cancelButton");
			this.m_cancelButton.Name = "m_cancelButton";
			//
			// m_okButton
			//
			this.m_okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
			resources.ApplyResources(this.m_okButton, "m_okButton");
			this.m_okButton.Name = "m_okButton";
			//
			// m_nudVal1
			//
			resources.ApplyResources(this.m_nudVal1, "m_nudVal1");
			this.m_nudVal1.Name = "m_nudVal1";
			//
			// m_nudVal2
			//
			resources.ApplyResources(this.m_nudVal2, "m_nudVal2");
			this.m_nudVal2.Name = "m_nudVal2";
			//
			// m_helpButton
			//
			resources.ApplyResources(this.m_helpButton, "m_helpButton");
			this.m_helpButton.Name = "m_helpButton";
			this.m_helpButton.UseVisualStyleBackColor = true;
			this.m_helpButton.Click += new System.EventHandler(this.m_helpButton_Click);
			//
			// SimpleIntegerMatchDlg
			//
			this.AcceptButton = this.m_okButton;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.m_cancelButton;
			this.Controls.Add(this.m_helpButton);
			this.Controls.Add(this.m_nudVal2);
			this.Controls.Add(this.m_nudVal1);
			this.Controls.Add(this.m_cancelButton);
			this.Controls.Add(this.m_okButton);
			this.Controls.Add(this.m_labelAnd);
			this.Controls.Add(this.m_comboMatchType);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "SimpleIntegerMatchDlg";
			((System.ComponentModel.ISupportInitialize)(this.m_nudVal1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.m_nudVal2)).EndInit();
			this.ResumeLayout(false);

		}
Ejemplo n.º 31
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(ImportWizard));
			this.m_btnHelp = new System.Windows.Forms.Button();
			this.m_btnBack = new System.Windows.Forms.Button();
			this.m_btnCancel = new System.Windows.Forms.Button();
			this.m_btnNext = new System.Windows.Forms.Button();
			this.lblSteps = new System.Windows.Forms.Label();
			this.panStep4 = new System.Windows.Forms.Panel();
			this.lblFinish = new System.Windows.Forms.Label();
			this.label14 = new System.Windows.Forms.Label();
			this.panStep3 = new System.Windows.Forms.Panel();
			this.cboShowMappings = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.tabCtrlMappings = new System.Windows.Forms.TabControl();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.m_btnDeleteScrMapping = new System.Windows.Forms.Button();
			this.lvScrMappings = new SIL.FieldWorks.Common.Controls.FwListView();
			this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader8 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader9 = new System.Windows.Forms.ColumnHeader();
			this.m_cmMappings = new System.Windows.Forms.ContextMenu();
			this.m_mnuExclude = new System.Windows.Forms.MenuItem();
			this.m_btnAddScrMapping = new System.Windows.Forms.Button();
			this.m_btnModifyScrMapping = new System.Windows.Forms.Button();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.m_btnAddNoteMapping = new System.Windows.Forms.Button();
			this.m_btnDeleteNoteMapping = new System.Windows.Forms.Button();
			this.m_btnModifyNoteMapping = new System.Windows.Forms.Button();
			this.lvAnnotationMappings = new SIL.FieldWorks.Common.Controls.FwListView();
			this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
			this.label15 = new System.Windows.Forms.Label();
			this.label20 = new System.Windows.Forms.Label();
			this.panStep2_Other = new System.Windows.Forms.Panel();
			this.sfFileListBuilder = new SIL.FieldWorks.Common.Controls.SFFileListBuilder();
			this.label21 = new System.Windows.Forms.Label();
			this.panStep2_PT = new System.Windows.Forms.Panel();
			this.cboPTBackTrans = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.cboPTTransNotes = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.cboPTLangProj = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.label23 = new System.Windows.Forms.Label();
			this.label24 = new System.Windows.Forms.Label();
			this.label25 = new System.Windows.Forms.Label();
			this.label26 = new System.Windows.Forms.Label();
			this.label27 = new System.Windows.Forms.Label();
			this.label28 = new System.Windows.Forms.Label();
			this.panStep1 = new System.Windows.Forms.Panel();
			this.rbParatext5 = new System.Windows.Forms.RadioButton();
			this.rbOther = new System.Windows.Forms.RadioButton();
			this.rbParatext6 = new System.Windows.Forms.RadioButton();
			this.label30 = new System.Windows.Forms.Label();
			this.panStep0 = new System.Windows.Forms.Panel();
			this.label31 = new System.Windows.Forms.Label();
			this.lblOverview = new System.Windows.Forms.Label();
			this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
			this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
			this.stepsPanel = new SIL.FieldWorks.Common.Controls.WizardStepPanel();
			this.panStep4.SuspendLayout();
			this.panStep3.SuspendLayout();
			this.tabCtrlMappings.SuspendLayout();
			this.tabPage1.SuspendLayout();
			this.tabPage2.SuspendLayout();
			this.panStep2_Other.SuspendLayout();
			this.panStep2_PT.SuspendLayout();
			this.panStep1.SuspendLayout();
			this.panStep0.SuspendLayout();
			this.SuspendLayout();
			//
			// m_btnHelp
			//
			resources.ApplyResources(this.m_btnHelp, "m_btnHelp");
			this.m_btnHelp.Name = "m_btnHelp";
			this.m_btnHelp.Click += new System.EventHandler(this.m_btnHelp_Click);
			//
			// m_btnBack
			//
			resources.ApplyResources(this.m_btnBack, "m_btnBack");
			this.m_btnBack.Name = "m_btnBack";
			this.m_btnBack.Click += new System.EventHandler(this.m_btnBack_Click);
			//
			// m_btnCancel
			//
			resources.ApplyResources(this.m_btnCancel, "m_btnCancel");
			this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.m_btnCancel.Name = "m_btnCancel";
			//
			// m_btnNext
			//
			resources.ApplyResources(this.m_btnNext, "m_btnNext");
			this.m_btnNext.Name = "m_btnNext";
			this.m_btnNext.Click += new System.EventHandler(this.m_btnNext_Click);
			//
			// lblSteps
			//
			resources.ApplyResources(this.lblSteps, "lblSteps");
			this.lblSteps.Name = "lblSteps";
			//
			// panStep4
			//
			this.panStep4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panStep4.Controls.Add(this.lblFinish);
			this.panStep4.Controls.Add(this.label14);
			resources.ApplyResources(this.panStep4, "panStep4");
			this.panStep4.Name = "panStep4";
			//
			// lblFinish
			//
			resources.ApplyResources(this.lblFinish, "lblFinish");
			this.lblFinish.Name = "lblFinish";
			//
			// label14
			//
			resources.ApplyResources(this.label14, "label14");
			this.label14.Name = "label14";
			//
			// panStep3
			//
			this.panStep3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panStep3.Controls.Add(this.cboShowMappings);
			this.panStep3.Controls.Add(this.tabCtrlMappings);
			this.panStep3.Controls.Add(this.label15);
			this.panStep3.Controls.Add(this.label20);
			resources.ApplyResources(this.panStep3, "panStep3");
			this.panStep3.Name = "panStep3";
			this.panStep3.VisibleChanged += new System.EventHandler(this.panStep3_VisibleChanged);
			//
			// cboShowMappings
			//
			this.cboShowMappings.AllowSpaceInEditBox = false;
			resources.ApplyResources(this.cboShowMappings, "cboShowMappings");
			this.cboShowMappings.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboShowMappings.FormattingEnabled = true;
			this.cboShowMappings.Items.AddRange(new object[] {
			resources.GetString("cboShowMappings.Items"),
			resources.GetString("cboShowMappings.Items1")});
			this.cboShowMappings.Name = "cboShowMappings";
			this.cboShowMappings.SelectedIndexChanged += new System.EventHandler(this.cboShowMappings_SelectedIndexChanged);
			//
			// tabCtrlMappings
			//
			resources.ApplyResources(this.tabCtrlMappings, "tabCtrlMappings");
			this.tabCtrlMappings.Controls.Add(this.tabPage1);
			this.tabCtrlMappings.Controls.Add(this.tabPage2);
			this.tabCtrlMappings.Name = "tabCtrlMappings";
			this.tabCtrlMappings.SelectedIndex = 0;
			this.tabCtrlMappings.SelectedIndexChanged += new System.EventHandler(this.tabCtrlMappings_SelectedIndexChanged);
			//
			// tabPage1
			//
			this.tabPage1.Controls.Add(this.m_btnDeleteScrMapping);
			this.tabPage1.Controls.Add(this.lvScrMappings);
			this.tabPage1.Controls.Add(this.m_btnAddScrMapping);
			this.tabPage1.Controls.Add(this.m_btnModifyScrMapping);
			resources.ApplyResources(this.tabPage1, "tabPage1");
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.UseVisualStyleBackColor = true;
			//
			// m_btnDeleteScrMapping
			//
			resources.ApplyResources(this.m_btnDeleteScrMapping, "m_btnDeleteScrMapping");
			this.m_btnDeleteScrMapping.Name = "m_btnDeleteScrMapping";
			this.m_btnDeleteScrMapping.Click += new System.EventHandler(this.btnDelete_Click);
			//
			// lvScrMappings
			//
			resources.ApplyResources(this.lvScrMappings, "lvScrMappings");
			this.lvScrMappings.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			this.columnHeader7,
			this.columnHeader8,
			this.columnHeader9});
			this.lvScrMappings.ContextMenu = this.m_cmMappings;
			this.lvScrMappings.FullRowSelect = true;
			this.lvScrMappings.HideSelection = false;
			this.lvScrMappings.Name = "lvScrMappings";
			this.lvScrMappings.OwnerDraw = true;
			this.lvScrMappings.Sorting = System.Windows.Forms.SortOrder.Ascending;
			this.lvScrMappings.UseCompatibleStateImageBehavior = false;
			this.lvScrMappings.View = System.Windows.Forms.View.Details;
			this.lvScrMappings.SelectedIndexChanged += new System.EventHandler(this.lvMappings_SelectedIndexChanged);
			this.lvScrMappings.DoubleClick += new System.EventHandler(this.lvMappings_DoubleClick);
			this.lvScrMappings.DrawSubItem += new System.Windows.Forms.DrawListViewSubItemEventHandler(this.lvMappings_DrawSubItem);
			//
			// columnHeader7
			//
			resources.ApplyResources(this.columnHeader7, "columnHeader7");
			//
			// columnHeader8
			//
			resources.ApplyResources(this.columnHeader8, "columnHeader8");
			//
			// columnHeader9
			//
			resources.ApplyResources(this.columnHeader9, "columnHeader9");
			//
			// m_cmMappings
			//
			this.m_cmMappings.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
			this.m_mnuExclude});
			this.m_cmMappings.Popup += new System.EventHandler(this.m_cmMappings_Popup);
			//
			// m_mnuExclude
			//
			this.m_mnuExclude.Index = 0;
			resources.ApplyResources(this.m_mnuExclude, "m_mnuExclude");
			this.m_mnuExclude.Click += new System.EventHandler(this.MappingContextMenu_Click);
			//
			// m_btnAddScrMapping
			//
			resources.ApplyResources(this.m_btnAddScrMapping, "m_btnAddScrMapping");
			this.m_btnAddScrMapping.Name = "m_btnAddScrMapping";
			this.m_btnAddScrMapping.Click += new System.EventHandler(this.btnAdd_Click);
			//
			// m_btnModifyScrMapping
			//
			resources.ApplyResources(this.m_btnModifyScrMapping, "m_btnModifyScrMapping");
			this.m_btnModifyScrMapping.Name = "m_btnModifyScrMapping";
			this.m_btnModifyScrMapping.Click += new System.EventHandler(this.m_btnModify_Click);
			//
			// tabPage2
			//
			this.tabPage2.Controls.Add(this.m_btnAddNoteMapping);
			this.tabPage2.Controls.Add(this.m_btnDeleteNoteMapping);
			this.tabPage2.Controls.Add(this.m_btnModifyNoteMapping);
			this.tabPage2.Controls.Add(this.lvAnnotationMappings);
			resources.ApplyResources(this.tabPage2, "tabPage2");
			this.tabPage2.Name = "tabPage2";
			this.tabPage2.UseVisualStyleBackColor = true;
			//
			// m_btnAddNoteMapping
			//
			resources.ApplyResources(this.m_btnAddNoteMapping, "m_btnAddNoteMapping");
			this.m_btnAddNoteMapping.Name = "m_btnAddNoteMapping";
			this.m_btnAddNoteMapping.Click += new System.EventHandler(this.btnAdd_Click);
			//
			// m_btnDeleteNoteMapping
			//
			resources.ApplyResources(this.m_btnDeleteNoteMapping, "m_btnDeleteNoteMapping");
			this.m_btnDeleteNoteMapping.Name = "m_btnDeleteNoteMapping";
			this.m_btnDeleteNoteMapping.Click += new System.EventHandler(this.btnDelete_Click);
			//
			// m_btnModifyNoteMapping
			//
			resources.ApplyResources(this.m_btnModifyNoteMapping, "m_btnModifyNoteMapping");
			this.m_btnModifyNoteMapping.Name = "m_btnModifyNoteMapping";
			this.m_btnModifyNoteMapping.Click += new System.EventHandler(this.m_btnModify_Click);
			//
			// lvAnnotationMappings
			//
			resources.ApplyResources(this.lvAnnotationMappings, "lvAnnotationMappings");
			this.lvAnnotationMappings.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
			this.columnHeader4,
			this.columnHeader5,
			this.columnHeader6});
			this.lvAnnotationMappings.ContextMenu = this.m_cmMappings;
			this.lvAnnotationMappings.FullRowSelect = true;
			this.lvAnnotationMappings.HideSelection = false;
			this.lvAnnotationMappings.Name = "lvAnnotationMappings";
			this.lvAnnotationMappings.OwnerDraw = true;
			this.lvAnnotationMappings.Sorting = System.Windows.Forms.SortOrder.Ascending;
			this.lvAnnotationMappings.UseCompatibleStateImageBehavior = false;
			this.lvAnnotationMappings.View = System.Windows.Forms.View.Details;
			this.lvAnnotationMappings.SelectedIndexChanged += new System.EventHandler(this.lvMappings_SelectedIndexChanged);
			this.lvAnnotationMappings.DoubleClick += new System.EventHandler(this.lvMappings_DoubleClick);
			this.lvAnnotationMappings.DrawSubItem += new System.Windows.Forms.DrawListViewSubItemEventHandler(this.lvMappings_DrawSubItem);
			//
			// columnHeader4
			//
			resources.ApplyResources(this.columnHeader4, "columnHeader4");
			//
			// columnHeader5
			//
			resources.ApplyResources(this.columnHeader5, "columnHeader5");
			//
			// columnHeader6
			//
			resources.ApplyResources(this.columnHeader6, "columnHeader6");
			//
			// label15
			//
			resources.ApplyResources(this.label15, "label15");
			this.label15.Name = "label15";
			//
			// label20
			//
			resources.ApplyResources(this.label20, "label20");
			this.label20.Name = "label20";
			//
			// panStep2_Other
			//
			this.panStep2_Other.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panStep2_Other.Controls.Add(this.sfFileListBuilder);
			this.panStep2_Other.Controls.Add(this.label21);
			resources.ApplyResources(this.panStep2_Other, "panStep2_Other");
			this.panStep2_Other.Name = "panStep2_Other";
			this.panStep2_Other.VisibleChanged += new System.EventHandler(this.panStep2_Other_VisibleChanged);
			//
			// sfFileListBuilder
			//
			resources.ApplyResources(this.sfFileListBuilder, "sfFileListBuilder");
			this.sfFileListBuilder.Name = "sfFileListBuilder";
			this.sfFileListBuilder.FilesChanged += new SIL.FieldWorks.Common.Controls.SFFileListBuilder.FilesChangedHandler(this.OnFilesChanged);
			//
			// label21
			//
			resources.ApplyResources(this.label21, "label21");
			this.label21.Name = "label21";
			//
			// panStep2_PT
			//
			this.panStep2_PT.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panStep2_PT.Controls.Add(this.cboPTBackTrans);
			this.panStep2_PT.Controls.Add(this.cboPTTransNotes);
			this.panStep2_PT.Controls.Add(this.cboPTLangProj);
			this.panStep2_PT.Controls.Add(this.label23);
			this.panStep2_PT.Controls.Add(this.label24);
			this.panStep2_PT.Controls.Add(this.label25);
			this.panStep2_PT.Controls.Add(this.label26);
			this.panStep2_PT.Controls.Add(this.label27);
			this.panStep2_PT.Controls.Add(this.label28);
			resources.ApplyResources(this.panStep2_PT, "panStep2_PT");
			this.panStep2_PT.Name = "panStep2_PT";
			this.panStep2_PT.VisibleChanged += new System.EventHandler(this.panStep2_PT_VisibleChanged);
			//
			// cboPTBackTrans
			//
			this.cboPTBackTrans.AllowSpaceInEditBox = false;
			resources.ApplyResources(this.cboPTBackTrans, "cboPTBackTrans");
			this.cboPTBackTrans.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboPTBackTrans.Name = "cboPTBackTrans";
			//
			// cboPTTransNotes
			//
			this.cboPTTransNotes.AllowSpaceInEditBox = false;
			resources.ApplyResources(this.cboPTTransNotes, "cboPTTransNotes");
			this.cboPTTransNotes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboPTTransNotes.Name = "cboPTTransNotes";
			//
			// cboPTLangProj
			//
			this.cboPTLangProj.AllowSpaceInEditBox = false;
			resources.ApplyResources(this.cboPTLangProj, "cboPTLangProj");
			this.cboPTLangProj.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboPTLangProj.Name = "cboPTLangProj";
			//
			// label23
			//
			resources.ApplyResources(this.label23, "label23");
			this.label23.Name = "label23";
			//
			// label24
			//
			resources.ApplyResources(this.label24, "label24");
			this.label24.Name = "label24";
			//
			// label25
			//
			this.label25.AutoEllipsis = true;
			resources.ApplyResources(this.label25, "label25");
			this.label25.BackColor = System.Drawing.Color.Transparent;
			this.label25.Name = "label25";
			//
			// label26
			//
			resources.ApplyResources(this.label26, "label26");
			this.label26.Name = "label26";
			//
			// label27
			//
			resources.ApplyResources(this.label27, "label27");
			this.label27.Name = "label27";
			//
			// label28
			//
			resources.ApplyResources(this.label28, "label28");
			this.label28.Name = "label28";
			//
			// panStep1
			//
			this.panStep1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panStep1.Controls.Add(this.rbParatext5);
			this.panStep1.Controls.Add(this.rbOther);
			this.panStep1.Controls.Add(this.rbParatext6);
			this.panStep1.Controls.Add(this.label30);
			resources.ApplyResources(this.panStep1, "panStep1");
			this.panStep1.Name = "panStep1";
			this.panStep1.VisibleChanged += new System.EventHandler(this.panStep1_VisibleChanged);
			//
			// rbParatext5
			//
			resources.ApplyResources(this.rbParatext5, "rbParatext5");
			this.rbParatext5.BackColor = System.Drawing.Color.Transparent;
			this.rbParatext5.Name = "rbParatext5";
			this.rbParatext5.UseVisualStyleBackColor = false;
			this.rbParatext5.CheckedChanged += new System.EventHandler(this.rbParatext5_CheckedChanged);
			//
			// rbOther
			//
			resources.ApplyResources(this.rbOther, "rbOther");
			this.rbOther.BackColor = System.Drawing.Color.Transparent;
			this.rbOther.Name = "rbOther";
			this.rbOther.UseVisualStyleBackColor = false;
			this.rbOther.CheckedChanged += new System.EventHandler(this.rbOther_CheckedChanged);
			//
			// rbParatext6
			//
			resources.ApplyResources(this.rbParatext6, "rbParatext6");
			this.rbParatext6.BackColor = System.Drawing.Color.Transparent;
			this.rbParatext6.Checked = true;
			this.rbParatext6.Name = "rbParatext6";
			this.rbParatext6.TabStop = true;
			this.rbParatext6.UseVisualStyleBackColor = false;
			this.rbParatext6.CheckedChanged += new System.EventHandler(this.rbParatext6_CheckedChanged);
			//
			// label30
			//
			resources.ApplyResources(this.label30, "label30");
			this.label30.Name = "label30";
			//
			// panStep0
			//
			this.panStep0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.panStep0.Controls.Add(this.label31);
			this.panStep0.Controls.Add(this.lblOverview);
			resources.ApplyResources(this.panStep0, "panStep0");
			this.panStep0.Name = "panStep0";
			//
			// label31
			//
			resources.ApplyResources(this.label31, "label31");
			this.label31.Name = "label31";
			//
			// lblOverview
			//
			resources.ApplyResources(this.lblOverview, "lblOverview");
			this.lblOverview.Name = "lblOverview";
			//
			// columnHeader1
			//
			resources.ApplyResources(this.columnHeader1, "columnHeader1");
			//
			// columnHeader2
			//
			resources.ApplyResources(this.columnHeader2, "columnHeader2");
			//
			// columnHeader3
			//
			resources.ApplyResources(this.columnHeader3, "columnHeader3");
			//
			// stepsPanel
			//
			resources.ApplyResources(this.stepsPanel, "stepsPanel");
			this.stepsPanel.CurrentStepNumber = 0;
			this.stepsPanel.Name = "stepsPanel";
			this.stepsPanel.StepText = new string[] {
		resources.GetString("stepsPanel.StepText"),
		resources.GetString("stepsPanel.StepText1"),
		resources.GetString("stepsPanel.StepText2"),
		resources.GetString("stepsPanel.StepText3"),
		resources.GetString("stepsPanel.StepText4")};
			//
			// ImportWizard
			//
			this.AcceptButton = this.m_btnNext;
			resources.ApplyResources(this, "$this");
			this.CancelButton = this.m_btnCancel;
			this.ControlBox = false;
			this.Controls.Add(this.panStep1);
			this.Controls.Add(this.panStep4);
			this.Controls.Add(this.lblSteps);
			this.Controls.Add(this.panStep3);
			this.Controls.Add(this.panStep2_Other);
			this.Controls.Add(this.panStep2_PT);
			this.Controls.Add(this.panStep0);
			this.Controls.Add(this.m_btnHelp);
			this.Controls.Add(this.m_btnBack);
			this.Controls.Add(this.m_btnCancel);
			this.Controls.Add(this.m_btnNext);
			this.Controls.Add(this.stepsPanel);
			this.Name = "ImportWizard";
			this.ShowInTaskbar = false;
			this.panStep4.ResumeLayout(false);
			this.panStep4.PerformLayout();
			this.panStep3.ResumeLayout(false);
			this.panStep3.PerformLayout();
			this.tabCtrlMappings.ResumeLayout(false);
			this.tabPage1.ResumeLayout(false);
			this.tabPage2.ResumeLayout(false);
			this.panStep2_Other.ResumeLayout(false);
			this.panStep2_Other.PerformLayout();
			this.panStep2_PT.ResumeLayout(false);
			this.panStep2_PT.PerformLayout();
			this.panStep1.ResumeLayout(false);
			this.panStep1.PerformLayout();
			this.panStep0.ResumeLayout(false);
			this.panStep0.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
		private void InitializeComponent()
		{
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WritingSystemPropertiesDialog));
			this.tabControl = new System.Windows.Forms.TabControl();
			this.tpGeneral = new System.Windows.Forms.TabPage();
			this.lblScriptRegionVariant = new System.Windows.Forms.Label();
			this.m_FullCode = new System.Windows.Forms.Label();
			this.lblFullCode = new System.Windows.Forms.Label();
			this.lblSpellingDictionary = new System.Windows.Forms.Label();
			this.cbDictionaries = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.m_regionVariantControl = new SIL.FieldWorks.FwCoreDlgControls.RegionVariantControl();
			this.gbDirection = new System.Windows.Forms.GroupBox();
			this.rbLeftToRight = new System.Windows.Forms.RadioButton();
			this.rbRightToLeft = new System.Windows.Forms.RadioButton();
			this.m_ShortWsName = new System.Windows.Forms.TextBox();
			this.label5 = new System.Windows.Forms.Label();
			this.tpFonts = new System.Windows.Forms.TabPage();
			this.m_defaultFontsControl = new SIL.FieldWorks.FwCoreDlgControls.DefaultFontsControl();
			this.tpKeyboard = new System.Windows.Forms.TabPage();
			this.m_keyboardControl = new Palaso.UI.WindowsForms.WritingSystems.WSKeyboardControl();
			this.tpConverters = new System.Windows.Forms.TabPage();
			this.btnEncodingConverter = new System.Windows.Forms.Button();
			this.m_lblEncodingConverter = new System.Windows.Forms.Label();
			this.cbEncodingConverter = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.tpSorting = new System.Windows.Forms.TabPage();
			this.m_sortUsingLabel = new System.Windows.Forms.Label();
			this.m_sortUsingComboBox = new System.Windows.Forms.ComboBox();
			this.m_sortRulesPanel = new System.Windows.Forms.Panel();
			this.m_sortRulesLoadPanel = new System.Windows.Forms.Panel();
			this.m_sortRulesLoadLabel = new System.Windows.Forms.Label();
			this.m_similarWsButton = new SIL.FieldWorks.FwCoreDlgControls.LocaleMenuButton();
			this.m_sortRulesButtonPanel = new System.Windows.Forms.Panel();
			this.m_angleBracketButton = new System.Windows.Forms.Button();
			this.m_ampersandButton = new System.Windows.Forms.Button();
			this.m_sortRulesTextBox = new SIL.FieldWorks.Common.Widgets.FwTextBox();
			this.m_sortingHelpLabel = new System.Windows.Forms.Label();
			this.m_sortLanguagePanel = new System.Windows.Forms.Panel();
			this.m_sortLanguageComboBox = new System.Windows.Forms.ComboBox();
			this.m_sortLanguageLabel = new System.Windows.Forms.Label();
			this.tpPUACharacters = new System.Windows.Forms.TabPage();
			this.m_lblPunctuation = new System.Windows.Forms.Label();
			this.btnPunctuation = new System.Windows.Forms.Button();
			this.m_lblValidCharacters = new System.Windows.Forms.Label();
			this.btnValidChars = new System.Windows.Forms.Button();
			this.btnModifyEthnologueInfo = new System.Windows.Forms.Button();
			this.btnHelp = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.btnOk = new System.Windows.Forms.Button();
			this.helpProvider = new System.Windows.Forms.HelpProvider();
			this.m_listBoxRelatedWSs = new System.Windows.Forms.ListBox();
			this.btnAdd = new System.Windows.Forms.Button();
			this.btnCopy = new System.Windows.Forms.Button();
			this.m_deleteButton = new System.Windows.Forms.Button();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.m_linkToEthnologue = new System.Windows.Forms.LinkLabel();
			this.m_LanguageCode = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.m_tbLanguageName = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.m_writingSystemsFor = new System.Windows.Forms.Label();
			this.lblHiddenWss = new System.Windows.Forms.Label();
			this.tabControl.SuspendLayout();
			this.tpGeneral.SuspendLayout();
			this.gbDirection.SuspendLayout();
			this.tpFonts.SuspendLayout();
			this.tpKeyboard.SuspendLayout();
			this.tpConverters.SuspendLayout();
			this.tpSorting.SuspendLayout();
			this.m_sortRulesPanel.SuspendLayout();
			this.m_sortRulesLoadPanel.SuspendLayout();
			this.m_sortRulesButtonPanel.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.m_sortRulesTextBox)).BeginInit();
			this.m_sortLanguagePanel.SuspendLayout();
			this.tpPUACharacters.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.SuspendLayout();
			//
			// tabControl
			//
			this.tabControl.Controls.Add(this.tpGeneral);
			this.tabControl.Controls.Add(this.tpFonts);
			this.tabControl.Controls.Add(this.tpKeyboard);
			this.tabControl.Controls.Add(this.tpConverters);
			this.tabControl.Controls.Add(this.tpSorting);
			this.tabControl.Controls.Add(this.tpPUACharacters);
			this.tabControl.HotTrack = true;
			resources.ApplyResources(this.tabControl, "tabControl");
			this.tabControl.Name = "tabControl";
			this.tabControl.SelectedIndex = 0;
			this.helpProvider.SetShowHelp(this.tabControl, ((bool)(resources.GetObject("tabControl.ShowHelp"))));
			this.tabControl.SelectedIndexChanged += new System.EventHandler(this.tabControl_SelectedIndexChanged);
			this.tabControl.Deselecting += new System.Windows.Forms.TabControlCancelEventHandler(this.tabControl_Deselecting);
			//
			// tpGeneral
			//
			this.tpGeneral.Controls.Add(this.lblScriptRegionVariant);
			this.tpGeneral.Controls.Add(this.m_FullCode);
			this.tpGeneral.Controls.Add(this.lblFullCode);
			this.tpGeneral.Controls.Add(this.lblSpellingDictionary);
			this.tpGeneral.Controls.Add(this.cbDictionaries);
			this.tpGeneral.Controls.Add(this.m_regionVariantControl);
			this.tpGeneral.Controls.Add(this.gbDirection);
			this.tpGeneral.Controls.Add(this.m_ShortWsName);
			this.tpGeneral.Controls.Add(this.label5);
			resources.ApplyResources(this.tpGeneral, "tpGeneral");
			this.tpGeneral.Name = "tpGeneral";
			this.helpProvider.SetShowHelp(this.tpGeneral, ((bool)(resources.GetObject("tpGeneral.ShowHelp"))));
			this.tpGeneral.UseVisualStyleBackColor = true;
			//
			// lblScriptRegionVariant
			//
			resources.ApplyResources(this.lblScriptRegionVariant, "lblScriptRegionVariant");
			this.lblScriptRegionVariant.Name = "lblScriptRegionVariant";
			this.helpProvider.SetShowHelp(this.lblScriptRegionVariant, ((bool)(resources.GetObject("lblScriptRegionVariant.ShowHelp"))));
			//
			// m_FullCode
			//
			resources.ApplyResources(this.m_FullCode, "m_FullCode");
			this.m_FullCode.Name = "m_FullCode";
			this.helpProvider.SetShowHelp(this.m_FullCode, ((bool)(resources.GetObject("m_FullCode.ShowHelp"))));
			//
			// lblFullCode
			//
			resources.ApplyResources(this.lblFullCode, "lblFullCode");
			this.lblFullCode.Name = "lblFullCode";
			this.helpProvider.SetShowHelp(this.lblFullCode, ((bool)(resources.GetObject("lblFullCode.ShowHelp"))));
			//
			// lblSpellingDictionary
			//
			resources.ApplyResources(this.lblSpellingDictionary, "lblSpellingDictionary");
			this.lblSpellingDictionary.Name = "lblSpellingDictionary";
			this.helpProvider.SetShowHelp(this.lblSpellingDictionary, ((bool)(resources.GetObject("lblSpellingDictionary.ShowHelp"))));
			//
			// cbDictionaries
			//
			this.cbDictionaries.AllowSpaceInEditBox = false;
			this.cbDictionaries.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cbDictionaries.FormattingEnabled = true;
			resources.ApplyResources(this.cbDictionaries, "cbDictionaries");
			this.cbDictionaries.Name = "cbDictionaries";
			this.helpProvider.SetShowHelp(this.cbDictionaries, ((bool)(resources.GetObject("cbDictionaries.ShowHelp"))));
			this.cbDictionaries.SelectedIndexChanged += new System.EventHandler(this.cbDictionaries_SelectedIndexChanged);
			//
			// m_regionVariantControl
			//
			resources.ApplyResources(this.m_regionVariantControl, "m_regionVariantControl");
			this.m_regionVariantControl.BackColor = System.Drawing.Color.Transparent;
			this.m_regionVariantControl.Name = "m_regionVariantControl";
			this.m_regionVariantControl.RegionName = global::SIL.FieldWorks.FwCoreDlgs.FwCoreDlgs.kstidOpen;
			this.m_regionVariantControl.RegionSubtag = null;
			this.m_regionVariantControl.ScriptName = global::SIL.FieldWorks.FwCoreDlgs.FwCoreDlgs.kstidOpen;
			this.m_regionVariantControl.ScriptSubtag = null;
			this.helpProvider.SetShowHelp(this.m_regionVariantControl, ((bool)(resources.GetObject("m_regionVariantControl.ShowHelp"))));
			this.m_regionVariantControl.VariantName = global::SIL.FieldWorks.FwCoreDlgs.FwCoreDlgs.kstidOpen;
			this.m_regionVariantControl.VariantSubtag = null;
			this.m_regionVariantControl.WritingSystem = null;
			this.m_regionVariantControl.ScriptRegionVariantChanged += new System.EventHandler(this.m_regionVariantControl_ScriptRegionVariantChanged);
			//
			// gbDirection
			//
			this.gbDirection.Controls.Add(this.rbLeftToRight);
			this.gbDirection.Controls.Add(this.rbRightToLeft);
			resources.ApplyResources(this.gbDirection, "gbDirection");
			this.gbDirection.Name = "gbDirection";
			this.helpProvider.SetShowHelp(this.gbDirection, ((bool)(resources.GetObject("gbDirection.ShowHelp"))));
			this.gbDirection.TabStop = false;
			//
			// rbLeftToRight
			//
			this.helpProvider.SetHelpString(this.rbLeftToRight, resources.GetString("rbLeftToRight.HelpString"));
			resources.ApplyResources(this.rbLeftToRight, "rbLeftToRight");
			this.rbLeftToRight.Name = "rbLeftToRight";
			this.helpProvider.SetShowHelp(this.rbLeftToRight, ((bool)(resources.GetObject("rbLeftToRight.ShowHelp"))));
			this.rbLeftToRight.TabStop = true;
			this.rbLeftToRight.CheckedChanged += new System.EventHandler(this.rbLeftToRight_CheckedChanged);
			//
			// rbRightToLeft
			//
			this.helpProvider.SetHelpString(this.rbRightToLeft, resources.GetString("rbRightToLeft.HelpString"));
			resources.ApplyResources(this.rbRightToLeft, "rbRightToLeft");
			this.rbRightToLeft.Name = "rbRightToLeft";
			this.helpProvider.SetShowHelp(this.rbRightToLeft, ((bool)(resources.GetObject("rbRightToLeft.ShowHelp"))));
			this.rbRightToLeft.CheckedChanged += new System.EventHandler(this.rbLeftToRight_CheckedChanged);
			//
			// m_ShortWsName
			//
			this.helpProvider.SetHelpString(this.m_ShortWsName, resources.GetString("m_ShortWsName.HelpString"));
			resources.ApplyResources(this.m_ShortWsName, "m_ShortWsName");
			this.m_ShortWsName.Name = "m_ShortWsName";
			this.helpProvider.SetShowHelp(this.m_ShortWsName, ((bool)(resources.GetObject("m_ShortWsName.ShowHelp"))));
			this.m_ShortWsName.TextChanged += new System.EventHandler(this.m_ShortWsName_TextChanged);
			//
			// label5
			//
			resources.ApplyResources(this.label5, "label5");
			this.label5.Name = "label5";
			this.helpProvider.SetShowHelp(this.label5, ((bool)(resources.GetObject("label5.ShowHelp"))));
			//
			// tpFonts
			//
			this.tpFonts.Controls.Add(this.m_defaultFontsControl);
			resources.ApplyResources(this.tpFonts, "tpFonts");
			this.tpFonts.Name = "tpFonts";
			this.helpProvider.SetShowHelp(this.tpFonts, ((bool)(resources.GetObject("tpFonts.ShowHelp"))));
			this.tpFonts.UseVisualStyleBackColor = true;
			//
			// m_defaultFontsControl
			//
			resources.ApplyResources(this.m_defaultFontsControl, "m_defaultFontsControl");
			this.m_defaultFontsControl.DefaultNormalFont = "";
			this.helpProvider.SetHelpString(this.m_defaultFontsControl, resources.GetString("m_defaultFontsControl.HelpString"));
			this.m_defaultFontsControl.Name = "m_defaultFontsControl";
			this.helpProvider.SetShowHelp(this.m_defaultFontsControl, ((bool)(resources.GetObject("m_defaultFontsControl.ShowHelp"))));
			this.m_defaultFontsControl.WritingSystem = null;
			//
			// tpKeyboard
			//
			this.tpKeyboard.Controls.Add(this.m_keyboardControl);
			resources.ApplyResources(this.tpKeyboard, "tpKeyboard");
			this.tpKeyboard.Name = "tpKeyboard";
			this.helpProvider.SetShowHelp(this.tpKeyboard, ((bool)(resources.GetObject("tpKeyboard.ShowHelp"))));
			this.tpKeyboard.UseVisualStyleBackColor = true;
			//
			// m_keyboardControl
			//
			resources.ApplyResources(this.m_keyboardControl, "m_keyboardControl");
			this.m_keyboardControl.Name = "m_keyboardControl";
			//
			// tpConverters
			//
			this.tpConverters.Controls.Add(this.btnEncodingConverter);
			this.tpConverters.Controls.Add(this.m_lblEncodingConverter);
			this.tpConverters.Controls.Add(this.cbEncodingConverter);
			resources.ApplyResources(this.tpConverters, "tpConverters");
			this.tpConverters.Name = "tpConverters";
			this.helpProvider.SetShowHelp(this.tpConverters, ((bool)(resources.GetObject("tpConverters.ShowHelp"))));
			this.tpConverters.UseVisualStyleBackColor = true;
			//
			// btnEncodingConverter
			//
			this.helpProvider.SetHelpString(this.btnEncodingConverter, resources.GetString("btnEncodingConverter.HelpString"));
			resources.ApplyResources(this.btnEncodingConverter, "btnEncodingConverter");
			this.btnEncodingConverter.Name = "btnEncodingConverter";
			this.helpProvider.SetShowHelp(this.btnEncodingConverter, ((bool)(resources.GetObject("btnEncodingConverter.ShowHelp"))));
			this.btnEncodingConverter.Click += new System.EventHandler(this.btnEncodingConverter_Click);
			//
			// m_lblEncodingConverter
			//
			resources.ApplyResources(this.m_lblEncodingConverter, "m_lblEncodingConverter");
			this.m_lblEncodingConverter.Name = "m_lblEncodingConverter";
			this.helpProvider.SetShowHelp(this.m_lblEncodingConverter, ((bool)(resources.GetObject("m_lblEncodingConverter.ShowHelp"))));
			//
			// cbEncodingConverter
			//
			this.cbEncodingConverter.AllowSpaceInEditBox = false;
			this.cbEncodingConverter.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.helpProvider.SetHelpString(this.cbEncodingConverter, resources.GetString("cbEncodingConverter.HelpString"));
			resources.ApplyResources(this.cbEncodingConverter, "cbEncodingConverter");
			this.cbEncodingConverter.Name = "cbEncodingConverter";
			this.helpProvider.SetShowHelp(this.cbEncodingConverter, ((bool)(resources.GetObject("cbEncodingConverter.ShowHelp"))));
			this.cbEncodingConverter.Sorted = true;
			this.cbEncodingConverter.SelectedIndexChanged += new System.EventHandler(this.cbEncodingConverter_SelectedIndexChanged);
			//
			// tpSorting
			//
			this.tpSorting.BackColor = System.Drawing.Color.Transparent;
			this.tpSorting.Controls.Add(this.m_sortUsingLabel);
			this.tpSorting.Controls.Add(this.m_sortUsingComboBox);
			this.tpSorting.Controls.Add(this.m_sortRulesPanel);
			this.tpSorting.Controls.Add(this.m_sortLanguagePanel);
			resources.ApplyResources(this.tpSorting, "tpSorting");
			this.tpSorting.Name = "tpSorting";
			this.helpProvider.SetShowHelp(this.tpSorting, ((bool)(resources.GetObject("tpSorting.ShowHelp"))));
			this.tpSorting.UseVisualStyleBackColor = true;
			//
			// m_sortUsingLabel
			//
			resources.ApplyResources(this.m_sortUsingLabel, "m_sortUsingLabel");
			this.m_sortUsingLabel.Name = "m_sortUsingLabel";
			//
			// m_sortUsingComboBox
			//
			this.m_sortUsingComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_sortUsingComboBox.FormattingEnabled = true;
			resources.ApplyResources(this.m_sortUsingComboBox, "m_sortUsingComboBox");
			this.m_sortUsingComboBox.Name = "m_sortUsingComboBox";
			this.m_sortUsingComboBox.SelectedIndexChanged += new System.EventHandler(this.m_sortUsingComboBox_SelectedIndexChanged);
			//
			// m_sortRulesPanel
			//
			this.m_sortRulesPanel.Controls.Add(this.m_sortRulesLoadPanel);
			this.m_sortRulesPanel.Controls.Add(this.m_sortRulesButtonPanel);
			this.m_sortRulesPanel.Controls.Add(this.m_sortRulesTextBox);
			this.m_sortRulesPanel.Controls.Add(this.m_sortingHelpLabel);
			resources.ApplyResources(this.m_sortRulesPanel, "m_sortRulesPanel");
			this.m_sortRulesPanel.Name = "m_sortRulesPanel";
			this.helpProvider.SetShowHelp(this.m_sortRulesPanel, ((bool)(resources.GetObject("m_sortRulesPanel.ShowHelp"))));
			//
			// m_sortRulesLoadPanel
			//
			this.m_sortRulesLoadPanel.Controls.Add(this.m_sortRulesLoadLabel);
			this.m_sortRulesLoadPanel.Controls.Add(this.m_similarWsButton);
			resources.ApplyResources(this.m_sortRulesLoadPanel, "m_sortRulesLoadPanel");
			this.m_sortRulesLoadPanel.Name = "m_sortRulesLoadPanel";
			//
			// m_sortRulesLoadLabel
			//
			resources.ApplyResources(this.m_sortRulesLoadLabel, "m_sortRulesLoadLabel");
			this.m_sortRulesLoadLabel.Name = "m_sortRulesLoadLabel";
			this.helpProvider.SetShowHelp(this.m_sortRulesLoadLabel, ((bool)(resources.GetObject("m_sortRulesLoadLabel.ShowHelp"))));
			//
			// m_similarWsButton
			//
			this.m_similarWsButton.DisplayLocaleId = null;
			resources.ApplyResources(this.m_similarWsButton, "m_similarWsButton");
			this.m_similarWsButton.Name = "m_similarWsButton";
			this.m_similarWsButton.SelectedLocaleId = null;
			this.helpProvider.SetShowHelp(this.m_similarWsButton, ((bool)(resources.GetObject("m_similarWsButton.ShowHelp"))));
			this.m_similarWsButton.UseVisualStyleBackColor = true;
			this.m_similarWsButton.LocaleSelected += new System.EventHandler(this.m_similarWsButton_LocaleSelected);
			//
			// m_sortRulesButtonPanel
			//
			this.m_sortRulesButtonPanel.Controls.Add(this.m_angleBracketButton);
			this.m_sortRulesButtonPanel.Controls.Add(this.m_ampersandButton);
			resources.ApplyResources(this.m_sortRulesButtonPanel, "m_sortRulesButtonPanel");
			this.m_sortRulesButtonPanel.Name = "m_sortRulesButtonPanel";
			//
			// m_angleBracketButton
			//
			resources.ApplyResources(this.m_angleBracketButton, "m_angleBracketButton");
			this.m_angleBracketButton.Name = "m_angleBracketButton";
			this.helpProvider.SetShowHelp(this.m_angleBracketButton, ((bool)(resources.GetObject("m_angleBracketButton.ShowHelp"))));
			this.m_angleBracketButton.UseMnemonic = false;
			this.m_angleBracketButton.UseVisualStyleBackColor = true;
			this.m_angleBracketButton.Click += new System.EventHandler(this.m_angleBracketButton_Click);
			//
			// m_ampersandButton
			//
			resources.ApplyResources(this.m_ampersandButton, "m_ampersandButton");
			this.m_ampersandButton.Name = "m_ampersandButton";
			this.helpProvider.SetShowHelp(this.m_ampersandButton, ((bool)(resources.GetObject("m_ampersandButton.ShowHelp"))));
			this.m_ampersandButton.UseMnemonic = false;
			this.m_ampersandButton.UseVisualStyleBackColor = true;
			this.m_ampersandButton.Click += new System.EventHandler(this.m_ampersandButton_Click);
			//
			// m_sortRulesTextBox
			//
			this.m_sortRulesTextBox.AcceptsReturn = true;
			this.m_sortRulesTextBox.AdjustStringHeight = false;
			resources.ApplyResources(this.m_sortRulesTextBox, "m_sortRulesTextBox");
			this.m_sortRulesTextBox.BackColor = System.Drawing.SystemColors.Window;
			this.m_sortRulesTextBox.controlID = null;
			this.m_sortRulesTextBox.HasBorder = true;
			this.m_sortRulesTextBox.Name = "m_sortRulesTextBox";
			this.helpProvider.SetShowHelp(this.m_sortRulesTextBox, ((bool)(resources.GetObject("m_sortRulesTextBox.ShowHelp"))));
			this.m_sortRulesTextBox.SuppressEnter = false;
			this.m_sortRulesTextBox.WordWrap = true;
			this.m_sortRulesTextBox.TextChanged += new System.EventHandler(this.m_sortRulesTextBox_TextChanged);
			//
			// m_sortingHelpLabel
			//
			resources.ApplyResources(this.m_sortingHelpLabel, "m_sortingHelpLabel");
			this.m_sortingHelpLabel.Name = "m_sortingHelpLabel";
			this.helpProvider.SetShowHelp(this.m_sortingHelpLabel, ((bool)(resources.GetObject("m_sortingHelpLabel.ShowHelp"))));
			this.m_sortingHelpLabel.UseMnemonic = false;
			//
			// m_sortLanguagePanel
			//
			this.m_sortLanguagePanel.Controls.Add(this.m_sortLanguageComboBox);
			this.m_sortLanguagePanel.Controls.Add(this.m_sortLanguageLabel);
			resources.ApplyResources(this.m_sortLanguagePanel, "m_sortLanguagePanel");
			this.m_sortLanguagePanel.Name = "m_sortLanguagePanel";
			//
			// m_sortLanguageComboBox
			//
			this.m_sortLanguageComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.m_sortLanguageComboBox.FormattingEnabled = true;
			resources.ApplyResources(this.m_sortLanguageComboBox, "m_sortLanguageComboBox");
			this.m_sortLanguageComboBox.Name = "m_sortLanguageComboBox";
			this.m_sortLanguageComboBox.SelectedIndexChanged += new System.EventHandler(this.m_sortLanguageComboBox_SelectedIndexChanged);
			//
			// m_sortLanguageLabel
			//
			resources.ApplyResources(this.m_sortLanguageLabel, "m_sortLanguageLabel");
			this.m_sortLanguageLabel.Name = "m_sortLanguageLabel";
			//
			// tpPUACharacters
			//
			this.tpPUACharacters.BackColor = System.Drawing.Color.Transparent;
			this.tpPUACharacters.Controls.Add(this.m_lblPunctuation);
			this.tpPUACharacters.Controls.Add(this.btnPunctuation);
			this.tpPUACharacters.Controls.Add(this.m_lblValidCharacters);
			this.tpPUACharacters.Controls.Add(this.btnValidChars);
			resources.ApplyResources(this.tpPUACharacters, "tpPUACharacters");
			this.tpPUACharacters.Name = "tpPUACharacters";
			this.helpProvider.SetShowHelp(this.tpPUACharacters, ((bool)(resources.GetObject("tpPUACharacters.ShowHelp"))));
			this.tpPUACharacters.UseVisualStyleBackColor = true;
			//
			// m_lblPunctuation
			//
			resources.ApplyResources(this.m_lblPunctuation, "m_lblPunctuation");
			this.m_lblPunctuation.Name = "m_lblPunctuation";
			this.helpProvider.SetShowHelp(this.m_lblPunctuation, ((bool)(resources.GetObject("m_lblPunctuation.ShowHelp"))));
			//
			// btnPunctuation
			//
			this.helpProvider.SetHelpString(this.btnPunctuation, resources.GetString("btnPunctuation.HelpString"));
			resources.ApplyResources(this.btnPunctuation, "btnPunctuation");
			this.btnPunctuation.Name = "btnPunctuation";
			this.helpProvider.SetShowHelp(this.btnPunctuation, ((bool)(resources.GetObject("btnPunctuation.ShowHelp"))));
			this.btnPunctuation.Click += new System.EventHandler(this.btnPunctuation_Click);
			//
			// m_lblValidCharacters
			//
			resources.ApplyResources(this.m_lblValidCharacters, "m_lblValidCharacters");
			this.m_lblValidCharacters.Name = "m_lblValidCharacters";
			this.helpProvider.SetShowHelp(this.m_lblValidCharacters, ((bool)(resources.GetObject("m_lblValidCharacters.ShowHelp"))));
			//
			// btnValidChars
			//
			this.helpProvider.SetHelpString(this.btnValidChars, resources.GetString("btnValidChars.HelpString"));
			resources.ApplyResources(this.btnValidChars, "btnValidChars");
			this.btnValidChars.Name = "btnValidChars";
			this.helpProvider.SetShowHelp(this.btnValidChars, ((bool)(resources.GetObject("btnValidChars.ShowHelp"))));
			this.btnValidChars.Click += new System.EventHandler(this.btnValidChars_Click);
			//
			// btnModifyEthnologueInfo
			//
			this.helpProvider.SetHelpString(this.btnModifyEthnologueInfo, resources.GetString("btnModifyEthnologueInfo.HelpString"));
			resources.ApplyResources(this.btnModifyEthnologueInfo, "btnModifyEthnologueInfo");
			this.btnModifyEthnologueInfo.Name = "btnModifyEthnologueInfo";
			this.helpProvider.SetShowHelp(this.btnModifyEthnologueInfo, ((bool)(resources.GetObject("btnModifyEthnologueInfo.ShowHelp"))));
			this.btnModifyEthnologueInfo.Click += new System.EventHandler(this.btnModifyEthnologueInfo_Click);
			//
			// btnHelp
			//
			resources.ApplyResources(this.btnHelp, "btnHelp");
			this.helpProvider.SetHelpString(this.btnHelp, resources.GetString("btnHelp.HelpString"));
			this.btnHelp.Name = "btnHelp";
			this.helpProvider.SetShowHelp(this.btnHelp, ((bool)(resources.GetObject("btnHelp.ShowHelp"))));
			this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
			//
			// btnCancel
			//
			resources.ApplyResources(this.btnCancel, "btnCancel");
			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.helpProvider.SetHelpString(this.btnCancel, resources.GetString("btnCancel.HelpString"));
			this.btnCancel.Name = "btnCancel";
			this.helpProvider.SetShowHelp(this.btnCancel, ((bool)(resources.GetObject("btnCancel.ShowHelp"))));
			//
			// btnOk
			//
			resources.ApplyResources(this.btnOk, "btnOk");
			this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
			this.helpProvider.SetHelpString(this.btnOk, resources.GetString("btnOk.HelpString"));
			this.btnOk.Name = "btnOk";
			this.helpProvider.SetShowHelp(this.btnOk, ((bool)(resources.GetObject("btnOk.ShowHelp"))));
			this.btnOk.Click += new System.EventHandler(this.OnOk);
			//
			// m_listBoxRelatedWSs
			//
			this.m_listBoxRelatedWSs.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
			this.m_listBoxRelatedWSs.FormattingEnabled = true;
			resources.ApplyResources(this.m_listBoxRelatedWSs, "m_listBoxRelatedWSs");
			this.m_listBoxRelatedWSs.Name = "m_listBoxRelatedWSs";
			this.helpProvider.SetShowHelp(this.m_listBoxRelatedWSs, ((bool)(resources.GetObject("m_listBoxRelatedWSs.ShowHelp"))));
			this.m_listBoxRelatedWSs.Sorted = true;
			this.m_listBoxRelatedWSs.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.m_listBoxRelatedWSs_DrawItem);
			this.m_listBoxRelatedWSs.SelectedIndexChanged += new System.EventHandler(this.m_listBoxRelatedWSs_SelectedIndexChanged);
			//
			// btnAdd
			//
			resources.ApplyResources(this.btnAdd, "btnAdd");
			this.btnAdd.Name = "btnAdd";
			this.helpProvider.SetShowHelp(this.btnAdd, ((bool)(resources.GetObject("btnAdd.ShowHelp"))));
			this.btnAdd.UseVisualStyleBackColor = true;
			this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
			//
			// btnCopy
			//
			resources.ApplyResources(this.btnCopy, "btnCopy");
			this.btnCopy.Name = "btnCopy";
			this.helpProvider.SetShowHelp(this.btnCopy, ((bool)(resources.GetObject("btnCopy.ShowHelp"))));
			this.btnCopy.UseVisualStyleBackColor = true;
			this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
			//
			// m_deleteButton
			//
			resources.ApplyResources(this.m_deleteButton, "m_deleteButton");
			this.m_deleteButton.Name = "m_deleteButton";
			this.helpProvider.SetShowHelp(this.m_deleteButton, ((bool)(resources.GetObject("m_deleteButton.ShowHelp"))));
			this.m_deleteButton.UseVisualStyleBackColor = true;
			this.m_deleteButton.Click += new System.EventHandler(this.m_deleteButton_Click);
			//
			// groupBox2
			//
			this.groupBox2.Controls.Add(this.btnModifyEthnologueInfo);
			this.groupBox2.Controls.Add(this.m_linkToEthnologue);
			this.groupBox2.Controls.Add(this.m_LanguageCode);
			this.groupBox2.Controls.Add(this.label3);
			this.groupBox2.Controls.Add(this.m_tbLanguageName);
			this.groupBox2.Controls.Add(this.label1);
			resources.ApplyResources(this.groupBox2, "groupBox2");
			this.groupBox2.Name = "groupBox2";
			this.helpProvider.SetShowHelp(this.groupBox2, ((bool)(resources.GetObject("groupBox2.ShowHelp"))));
			this.groupBox2.TabStop = false;
			//
			// m_linkToEthnologue
			//
			resources.ApplyResources(this.m_linkToEthnologue, "m_linkToEthnologue");
			this.m_linkToEthnologue.Name = "m_linkToEthnologue";
			this.helpProvider.SetShowHelp(this.m_linkToEthnologue, ((bool)(resources.GetObject("m_linkToEthnologue.ShowHelp"))));
			this.m_linkToEthnologue.TabStop = true;
			this.m_linkToEthnologue.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkToEthnologue_LinkClicked);
			//
			// m_LanguageCode
			//
			resources.ApplyResources(this.m_LanguageCode, "m_LanguageCode");
			this.m_LanguageCode.Name = "m_LanguageCode";
			this.helpProvider.SetShowHelp(this.m_LanguageCode, ((bool)(resources.GetObject("m_LanguageCode.ShowHelp"))));
			//
			// label3
			//
			resources.ApplyResources(this.label3, "label3");
			this.label3.Name = "label3";
			this.helpProvider.SetShowHelp(this.label3, ((bool)(resources.GetObject("label3.ShowHelp"))));
			//
			// m_tbLanguageName
			//
			resources.ApplyResources(this.m_tbLanguageName, "m_tbLanguageName");
			this.m_tbLanguageName.Name = "m_tbLanguageName";
			this.helpProvider.SetShowHelp(this.m_tbLanguageName, ((bool)(resources.GetObject("m_tbLanguageName.ShowHelp"))));
			this.m_tbLanguageName.TextChanged += new System.EventHandler(this.m_tbLanguageName_TextChanged);
			//
			// label1
			//
			resources.ApplyResources(this.label1, "label1");
			this.label1.Name = "label1";
			this.helpProvider.SetShowHelp(this.label1, ((bool)(resources.GetObject("label1.ShowHelp"))));
			//
			// m_writingSystemsFor
			//
			resources.ApplyResources(this.m_writingSystemsFor, "m_writingSystemsFor");
			this.m_writingSystemsFor.Name = "m_writingSystemsFor";
			this.helpProvider.SetShowHelp(this.m_writingSystemsFor, ((bool)(resources.GetObject("m_writingSystemsFor.ShowHelp"))));
			//
			// lblHiddenWss
			//
			resources.ApplyResources(this.lblHiddenWss, "lblHiddenWss");
			this.lblHiddenWss.Name = "lblHiddenWss";
			this.helpProvider.SetShowHelp(this.lblHiddenWss, ((bool)(resources.GetObject("lblHiddenWss.ShowHelp"))));
			//
			// WritingSystemPropertiesDialog
			//
			this.AcceptButton = this.btnOk;
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.btnCancel;
			this.Controls.Add(this.lblHiddenWss);
			this.Controls.Add(this.m_writingSystemsFor);
			this.Controls.Add(this.groupBox2);
			this.Controls.Add(this.m_deleteButton);
			this.Controls.Add(this.btnCopy);
			this.Controls.Add(this.btnAdd);
			this.Controls.Add(this.m_listBoxRelatedWSs);
			this.Controls.Add(this.btnOk);
			this.Controls.Add(this.btnCancel);
			this.Controls.Add(this.btnHelp);
			this.Controls.Add(this.tabControl);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "WritingSystemPropertiesDialog";
			this.helpProvider.SetShowHelp(this, ((bool)(resources.GetObject("$this.ShowHelp"))));
			this.ShowIcon = false;
			this.ShowInTaskbar = false;
			this.tabControl.ResumeLayout(false);
			this.tpGeneral.ResumeLayout(false);
			this.tpGeneral.PerformLayout();
			this.gbDirection.ResumeLayout(false);
			this.tpFonts.ResumeLayout(false);
			this.tpKeyboard.ResumeLayout(false);
			this.tpConverters.ResumeLayout(false);
			this.tpConverters.PerformLayout();
			this.tpSorting.ResumeLayout(false);
			this.tpSorting.PerformLayout();
			this.m_sortRulesPanel.ResumeLayout(false);
			this.m_sortRulesLoadPanel.ResumeLayout(false);
			this.m_sortRulesButtonPanel.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.m_sortRulesTextBox)).EndInit();
			this.m_sortLanguagePanel.ResumeLayout(false);
			this.m_sortLanguagePanel.PerformLayout();
			this.tpPUACharacters.ResumeLayout(false);
			this.tpPUACharacters.PerformLayout();
			this.groupBox2.ResumeLayout(false);
			this.groupBox2.PerformLayout();
			this.ResumeLayout(false);
			this.PerformLayout();

		}