11 Aralık 2014 Perşembe

C# Kod ile Textbox Oluşturma Kodları

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace kodla_textbox_olusturma
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{



TextBox textbox = new TextBox ();
textbox.Top = 50;
textbox.Left = 70;
textbox.Width = 100;
textbox.Text = "textbox";

this.Controls.Add(textbox);

}
}
}
Paylaş:

0 yorum:

Yorum Gönder

Popüler

Son

Kategoriler

Arşiv