wcf.regNote.message

|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
namespace WindowsApplication3
{
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Button cmdNewFeld;
private System.ComponentModel.IContainer components;
public Form1()
{
ObjekteMachen();
}
private void ObjekteMachen()
{
this.components = new System.ComponentModel.Container();
this.cmdNewFeld = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// cmdNewFeld
//
this.cmdNewFeld.Location = new System.Drawing.Point(8, 392);
this.cmdNewFeld.Name = "cmdNewFeld";
this.cmdNewFeld.Size = new System.Drawing.Size(120, 24);
this.cmdNewFeld.TabIndex = 0;
this.cmdNewFeld.Text = "Neues Feld";
this.cmdNewFeld.Visible = true;
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.BackColor = System.Drawing.Color.DimGray;
this.ClientSize = new System.Drawing.Size(464, 534);
this.Cursor = System.Windows.Forms.Cursors.Cross;
this.Name = "Form1";
this.Text = "Form1";
}
static void Main()
{
Application.Run(new Form1());
}
private void cmdNewFeld_Click(object sender, System.EventArgs e)
{
//........
}
}
}
|
Quoted
Original von Spy
Du überlegst dir bei welchen Click Event auf einen Button xy was passieren muss...
