Form.AcceptButton : Form « System.Windows.Forms « C# / C Sharp by API






Form.AcceptButton

   
using System;
using System.Drawing;
using System.Windows.Forms;
public class EnterPrice : Form {
  private Button enter = new Button();
  private Label answer = new Label();
  private TextBox text = new TextBox( );

  public EnterPrice( ) {
    enter.Text = "Enter Price";
    text.Text = "";
    answer.Text = "";

    Size = new Size(300,200);
    answer.Size = new Size(200,50);

    enter.Location = new Point(30 + enter.Width, 30);
    text.Location = new Point (40 + enter.Width + enter.Width, 30);
    answer.Location = new Point(20, 60);

    AcceptButton = enter;

    Controls.Add(text);
    Controls.Add(answer);
    Controls.Add(enter);

    enter.Click += new EventHandler(Enter_Click);
  }

  protected void Enter_Click(Object sender, EventArgs e) {
    try{
    Console.WriteLine(Double.Parse(text.Text));
    }catch(Exception){
    }
    text.Text = "";
    text.Focus();
  }
  static void Main() {
    Application.Run(new EnterPrice());
  }
}

   
    
    
  








Related examples in the same category

1.new Form()
2.extends Form
3.Form.ActiveForm.Location
4.Form.Activated
5.Form.AddOwnedForm
6.Form.AutoScaleBaseSize
7.Form.AutoScroll
8.Form.AutoScrollMinSize
9.Form.BackColor
10.Form.CancelButton
11.Form.CenterToScreen()
12.Form.ClientRectangle
13.Form.ClientSize
14.Form.Closed
15.Form.Closing
16.Form.ContextMenu
17.Form.ControlBox
18.Form.Controls
19.Form.Cursor
20.Form.DesktopBounds
21.Form.DialogResult
22.Form.DisplayRectangle
23.Form.Dispose
24.Form.FormBorderStyle
25.Form.ForeColor
26.Form.GotFocus
27.Form.Height
28.Form.Hide()
29.Form.Invalidate
30.Form.IsMdiContainer
31.Form.KeyPress
32.Form.KeyPreview
33.Form.KeyUp
34.Form.Load
35.Form.Location
36.Form.MaximizeBox
37.Form.MaximumSize
38.Form.MdiParent
39.Form.MenuComplete
40.Form.Menu
41.Form.MinimizeBox
42.Form.MinimumSize
43.Form.MouseDown
44.Form.MouseLeave(All other events)
45.Form.MouseUp
46.Form.OnDragDrop
47.Form.OnDragOver
48.Form.OnInputLanguageChanged
49.Form.OnKeyDown
50.Form.OnKeyPress
51.Form.OnMouseEnter
52.Form.OnMouseHover
53.Form.OnMouseLeave
54.Form.OnMouseMove
55.Form.OnMouseWheel
56.Form.OnPaint(PaintEventArgs e)
57.Form.OnResize
58.Form.Opacity
59.Form.Paint
60.Form.Region
61.Form.Resize
62.Form.ResizeRedraw
63.Form.SetStyle
64.Form.ShowInTaskbar
65.Form.Size
66.Form.Show
67.Form.StartPosition
68.Form.SuspendLayout
69.Form.Text
70.Form.Top
71.Form.TransparencyKey
72.Form.Visible
73.Form.Width
74.Form.WindowState