📄 form1.cs
字号:
this.cListe.InfoMessage += new System.Data.OleDb.OleDbInfoMessageEventHandler(this.cListe_InfoMessage);
//
// button1
//
this.button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.button1.ImageIndex = 0;
this.button1.ImageList = this.iButton;
this.button1.Location = new System.Drawing.Point(248, 400);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(104, 24);
this.button1.TabIndex = 4;
this.button1.Text = " Yeni Kay齮";
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// iButton
//
this.iButton.ImageSize = new System.Drawing.Size(16, 16);
this.iButton.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("iButton.ImageStream")));
this.iButton.TransparentColor = System.Drawing.Color.Transparent;
//
// tbNumara
//
this.tbNumara.Location = new System.Drawing.Point(72, 16);
this.tbNumara.Name = "tbNumara";
this.tbNumara.Size = new System.Drawing.Size(72, 20);
this.tbNumara.TabIndex = 0;
this.tbNumara.Text = "";
this.tbNumara.TextChanged += new System.EventHandler(this.tbNumara_TextChanged);
//
// label1
//
this.label1.Location = new System.Drawing.Point(8, 19);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(64, 16);
this.label1.TabIndex = 5;
this.label1.Text = "逐renci No";
//
// dgListe
//
this.dgListe.AlternatingBackColor = System.Drawing.Color.Lavender;
this.dgListe.BackColor = System.Drawing.Color.WhiteSmoke;
this.dgListe.BackgroundColor = System.Drawing.Color.LightGray;
this.dgListe.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.dgListe.CaptionBackColor = System.Drawing.Color.LightSteelBlue;
this.dgListe.CaptionFont = new System.Drawing.Font("Microsoft Sans Serif", 8F);
this.dgListe.CaptionForeColor = System.Drawing.Color.MidnightBlue;
this.dgListe.DataMember = "kimlik";
this.dgListe.DataSource = this.dsKimlik;
this.dgListe.FlatMode = true;
this.dgListe.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F);
this.dgListe.ForeColor = System.Drawing.Color.MidnightBlue;
this.dgListe.GridLineColor = System.Drawing.Color.Gainsboro;
this.dgListe.GridLineStyle = System.Windows.Forms.DataGridLineStyle.None;
this.dgListe.HeaderBackColor = System.Drawing.Color.MidnightBlue;
this.dgListe.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 8F);
this.dgListe.HeaderForeColor = System.Drawing.Color.WhiteSmoke;
this.dgListe.LinkColor = System.Drawing.Color.Teal;
this.dgListe.Location = new System.Drawing.Point(8, 56);
this.dgListe.Name = "dgListe";
this.dgListe.ParentRowsBackColor = System.Drawing.Color.Gainsboro;
this.dgListe.ParentRowsForeColor = System.Drawing.Color.MidnightBlue;
this.dgListe.ReadOnly = true;
this.dgListe.SelectionBackColor = System.Drawing.Color.CadetBlue;
this.dgListe.SelectionForeColor = System.Drawing.Color.WhiteSmoke;
this.dgListe.Size = new System.Drawing.Size(344, 328);
this.dgListe.TabIndex = 1;
this.dgListe.TableStyles.AddRange(new System.Windows.Forms.DataGridTableStyle[] {
this.dgs});
//
// dsKimlik
//
this.dsKimlik.DataSetName = "dsKimlik";
this.dsKimlik.Locale = new System.Globalization.CultureInfo("tr-TR");
//
// dgs
//
this.dgs.DataGrid = this.dgListe;
this.dgs.GridColumnStyles.AddRange(new System.Windows.Forms.DataGridColumnStyle[] {
this.cNumara,
this.cAd,
this.cSoyad});
this.dgs.GridLineColor = System.Drawing.SystemColors.Desktop;
this.dgs.HeaderForeColor = System.Drawing.SystemColors.ControlText;
this.dgs.MappingName = "kimlik";
//
// cNumara
//
this.cNumara.Format = "";
this.cNumara.FormatInfo = null;
this.cNumara.HeaderText = "Numara";
this.cNumara.MappingName = "Numara";
this.cNumara.NullText = "";
this.cNumara.Width = 80;
//
// cAd
//
this.cAd.Format = "";
this.cAd.FormatInfo = null;
this.cAd.HeaderText = "Ad";
this.cAd.MappingName = "Ad";
this.cAd.NullText = "";
this.cAd.Width = 110;
//
// cSoyad
//
this.cSoyad.Format = "";
this.cSoyad.FormatInfo = null;
this.cSoyad.HeaderText = "Soyad";
this.cSoyad.MappingName = "Soyad";
this.cSoyad.NullText = "";
this.cSoyad.Width = 110;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -