Exemple #1
0
 public void SetWrapState(bool WrapOn)
 {
     // Go to property sheet and make sure that wrap is set
     using (PropertiesDialog props = new PropertiesDialog(this))
     {
         props.Open(OpenTarget.Specifics);
         using (Tabs tabs = new Tabs(props))
         {
             tabs.SetWrapState(WrapOn);
         }
         props.Close(PropertiesDialog.CloseAction.OK);
     }
 }
 public OptionsTab(PropertiesDialog propDialog) : base(propDialog, " Options ")
 {
 }
 public TabBase(PropertiesDialog propDialog, string tabName)
 {
     this.propDialog = propDialog;
     this.tabName    = tabName;
 }
Exemple #4
0
 public ColorsTab(PropertiesDialog propDialog) : base(propDialog, " Colors ")
 {
 }
Exemple #5
0
 public FontTab(PropertiesDialog propDialog) : base(propDialog, " Font ")
 {
 }
Exemple #6
0
        public Tabs(PropertiesDialog propDialog)
        {
            this.propDialog = propDialog;

            this.InitializeAllTabs();
        }
 public LayoutTab(PropertiesDialog propDialog) : base(propDialog, " Layout ")
 {
 }