Ejemplo n.º 1
0
 private void toolStripMenuItem1_Click(object sender, EventArgs e)
 {
     using (flcsZoomOut zoomout = new flcsZoomOut(txtDealInformation.Text.Trim(), "Deal Information"))
     {
         zoomout.ShowDialog();
         txtDealInformation.Text = zoomout.text.Trim();
     }
 }
Ejemplo n.º 2
0
 private void toolKeyInformationText_Click(object sender, EventArgs e)
 {
     using (flcsZoomOut zoomout = new flcsZoomOut(txtKeyInformationText.Text.Trim(), "Key Information"))
     {
         zoomout.ShowDialog();
         txtKeyInformationText.Text = zoomout.text.Trim();
     }
 }
Ejemplo n.º 3
0
 private void toolAccessibilityText_Click(object sender, EventArgs e)
 {
     using (flcsZoomOut zoomout = new flcsZoomOut(txtAccessibilityText.Text.Trim(), "Accessibility"))
     {
         zoomout.ShowDialog();
         txtAccessibilityText.Text = zoomout.text.Trim();
     }
 }
Ejemplo n.º 4
0
 private void toolCountryText_Click(object sender, EventArgs e)
 {
     using (flcsZoomOut zoomout = new flcsZoomOut(txtCountryText.Text.Trim(), "Country Text"))
     {
         zoomout.ShowDialog();
         txtCountryText.Text = zoomout.text.Trim();
     }
 }
Ejemplo n.º 5
0
 private void toolPleasenote_Click(object sender, EventArgs e)
 {
     using (flcsZoomOut zoomout = new flcsZoomOut(txtPleasenote.Text.Trim(), "Please Note"))
     {
         zoomout.ShowDialog();
         txtPleasenote.Text = zoomout.text.Trim();
     }
 }
Ejemplo n.º 6
0
 private void toolOptionalExtras_Click(object sender, EventArgs e)
 {
     using (flcsZoomOut zoomout = new flcsZoomOut(txtOptionalExtras.Text.Trim(), "Optional Extras"))
     {
         zoomout.ShowDialog();
         txtOptionalExtras.Text = zoomout.text.Trim();
     }
 }
Ejemplo n.º 7
0
 private void toolChildPrices_Click(object sender, EventArgs e)
 {
     using (flcsZoomOut zoomout = new flcsZoomOut(txtChildPrice.Text.Trim(), "Child Price"))
     {
         zoomout.ShowDialog();
         txtChildPrice.Text = zoomout.text.Trim();
     }
 }
Ejemplo n.º 8
0
 private void includesZoomout_Click(object sender, EventArgs e)
 {
     using (flcsZoomOut zoomout = new flcsZoomOut(txtDealIntro.Text.Trim(), "What is included"))
     {
         zoomout.ShowDialog();
         txtDealIntro.Text = zoomout.text.Trim();
     }
 }