zoukankan      html  css  js  c++  java
  • propertygrid控件的简单绑定

     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 
    10 namespace propertygrid
    11 {
    12     public partial class Form1 : Form
    13     {
    14         public Form1()
    15         {
    16             InitializeComponent();
    17         }
    18 
    19         private void Form1_Load(object sender, EventArgs e)
    20         {
    21             Customer customer = new Customer();
    22             propertyGrid1.SelectedObject = customer;
    23         }
    24     }
    25 
    26  [DefaultPropertyAttribute("Name")]
    27  public class Customer
    28  {
    29      [CategoryAttribute("用户信息"), DescriptionAttribute("设置消费者姓名")]
    30      public string Name { getset; }
    31      [CategoryAttribute("用户信息"), DescriptionAttribute("设置消费者Email地址")]
    32      public string Email { getset; }
    33      [CategoryAttribute("备注"), DescriptionAttribute("备注信息")]
    34      public string Mark { getset; }
    35      public Customer()
    36      {
    37          Name = "liush";
    38          Email = "kakaliush@163.com";
    39          Mark = "测试propertyGrid";
    40      }
    41  }
    42 }
    43 
    44 
  • 相关阅读:
    [转]手把手硬件电路详细设计过程
    虚拟机检测技术攻防
    TTL电平和CMOS电平总结
    每个程序员都应注意的9种反面模式
    优化Laravel网站打开速度
    如何在 PHP 中处理 Protocol Buffers 数据
    日请求亿级的 QQ 会员 AMS 平台 PHP7 升级实践
    跨境电商国际物流模式
    2016跨境电商五大物流模式盘点
    10个值得深思的PHP面试问题
  • 原文地址:https://www.cnblogs.com/kakaliush/p/1706130.html
Copyright © 2011-2022 走看看