Beispiel #1
0
 private void btn_ok_Click(object sender, EventArgs e)
 {
     customInfoHtml = tb_propvalue.Text;
     if (rb_never.Checked)
         showCustomSection = ShowCustomInfoSection.Never;
     else if (rb_left.Checked)
         showCustomSection = ShowCustomInfoSection.Left;
     else
         showCustomSection = ShowCustomInfoSection.Right;
 }
Beispiel #2
0
 private void btn_ok_Click(object sender, EventArgs e)
 {
     customInfoHtml = tb_propvalue.Text;
     if (rb_never.Checked)
     {
         showCustomSection = ShowCustomInfoSection.Never;
     }
     else if (rb_left.Checked)
     {
         showCustomSection = ShowCustomInfoSection.Left;
     }
     else
     {
         showCustomSection = ShowCustomInfoSection.Right;
     }
 }
Beispiel #3
0
 public CustomInfoForm(ShowCustomInfoSection showSection, string customInfo)
 {
     InitializeComponent();
     showCustomSection = showSection;
     CustomInfoHtml = customInfo;
 }
Beispiel #4
0
 public CustomInfoForm(ShowCustomInfoSection showSection, string customInfo)
 {
     InitializeComponent();
     showCustomSection = showSection;
     CustomInfoHtml    = customInfo;
 }