コード例 #1
0
        public SecuritySettingsTabPage(TabbedSettingsDialog dialog, SecuritySettings settings)
            : base(dialog, settings)
        {
            int tabIndex = 0;
            int rowIndex = 0;

            CreateInheritanceControl(ref rowIndex, ref tabIndex);
            FormTools.AddLabeledEnumDropDown(this, "&Authentication", settings.AuthenticationLevel, ref rowIndex, ref tabIndex, RdpClient.AuthenticationLevelToString);
        }
コード例 #2
0
        public GroupPropertiesTabPage(TabbedSettingsDialog dialog, GroupSettings settings)
            : base(dialog, settings, settings.Name)
        {
            int rowIndex = 0;
            int tabIndex = 0;

            AddGroupName(ref rowIndex, ref tabIndex);
            AddParentCombo(ref rowIndex, ref tabIndex);
            AddComment(ref rowIndex, ref tabIndex).Setting = base.Settings.Comment;
        }
コード例 #3
0
ファイル: OptionsDialog.cs プロジェクト: mikkelbu/nunitv2
 public static void Display(Form owner)
 {
     TabbedSettingsDialog.Display(owner,
                                  new GuiSettingsPage("General"),
                                  new TreeSettingsPage("Tree"),
                                  new TestResultSettingsPage("Results"),
                                  new TextOutputSettingsPage("Text Output"),
                                  new TestLoaderSettingsPage("Test Load"),
                                  new AssemblyReloadSettingsPage("Reload"),
                                  new VisualStudioSettingsPage("Visual Studio"));
 }
コード例 #4
0
 public ServerDisplaySettingsTabPage(TabbedSettingsDialog dialog, ServerDisplaySettings settings)
     : base(dialog, settings)
 {
     Create(out int _, out int _);
 }
コード例 #5
0
 public LogonCredentialsTabPage(TabbedSettingsDialog dialog, LogonCredentials settings)
     : base(dialog, settings)
 {
 }
コード例 #6
0
ファイル: CredentialsTabPage.cs プロジェクト: xxftapv/RDCMan
 protected CredentialsTabPage(TabbedSettingsDialog dialog, TSettingGroup settings)
     : base(dialog, settings)
 {
 }
コード例 #7
0
 public QuickConnectTabPage(TabbedSettingsDialog dialog, LogonCredentials settings)
     : base(dialog, settings)
 {
 }
コード例 #8
0
 protected GroupBasePropertiesTabPage(TabbedSettingsDialog dialog, TSettingsGroup settings, string name)
     : base(dialog, settings, name)
 {
 }