TREEVIEW DATAGRIDVIEW

 
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;

  9. namespace fund
  10. {
  11.     public partial class GCard : Form
  12.     {

  13.         private int i;
  14.         public GCard(int s)
  15.         {
  16.             this.i = s;
  17.             InitializeComponent();
  18.         }

  19.         private void GCard_Load(object sender, EventArgs e)
  20.         {
  21.             var card = from m in Main.DB.CARD
  22.                         where m.ZCID==i
  23.                         select m;
  24.             this.cARDBindingSource.DataSource = card.ToList();
  25.         }

  26.         private void button1_Click(object sender, EventArgs e)
  27.         {
  28.             Main.DB.SubmitChanges();
  29.         }

  30.         private void pictureBox1_Click(object sender, EventArgs e)
  31.         {
  32.             seclets(lb);
  33.         }

  34.         private void pictureBox2_Click(object sender, EventArgs e)
  35.         {
  36.             seclets(textBox11);
  37.         }

  38.         private void seclets(TextBox t)
  39.         {
  40.             SBM sbm = new SBM();
  41.             if (DialogResult.OK == sbm.ShowDialog())
  42.             {
  43.                 t.Text = sbm.NodeText;
  44.                 t.Focus();

  45.             }
  46.         }
  47.     }
  48. }
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. namespace fund
  10. {
  11.     public partial class SBM : Form
  12.     {
  13.         private string nodeText;
  14.         public string NodeText
  15.         {
  16.             get { return nodeText; }
  17.             set { nodeText = value; }
  18.         }
  19.         public SBM()
  20.         {
  21.             InitializeComponent();
  22.         }
  23.         private void treeView1_AfterSelect(object sender, TreeViewEventArgs e)
  24.         {
  25.            // MessageBox.Show(e.Node.Text);
  26.         }
  27.         private void treeView1_NodeMouseDoubleClick(object sender, TreeNodeMouseClickEventArgs e)
  28.         {
  29.             this.NodeText = e.Node.Text;
  30.             this.DialogResult = DialogResult.OK;
  31.             this.Close();
  32.         }
  33.     }
  34. }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值