Exemplo n.º 1
0
 public void ShowOptionsDialog(OptionEditorType editorType)
 {
     Program.MainForm.ShowOptionsDialog(editorType == OptionEditorType.None ? String.Empty : editorType.ToString());
 }
Exemplo n.º 2
0
		public void ShowOptionsEditor(OptionEditorType type)
		{
			ShowOptionsEditor(type == OptionEditorType.None ? String.Empty : type.ToString());
		}
Exemplo n.º 3
0
		public static void ShowConfigurationDlg(ConfigurationContent configContent, OptionEditorType editorType , ConfigFinalSelectionEventHandler onFinalSelectionHandler)
		{
			ShowConfigurationDlg(configContent, editorType == OptionEditorType.None ? String.Empty : editorType.ToString() , onFinalSelectionHandler);
		}
Exemplo n.º 4
0
    private TreeNode AddNode( TreeNode parent, OptionEditorType type, string text )
    {
			return AddNode(parent, type.ToString(), text);
    }