码迷,mamicode.com
首页 > Windows程序 > 详细

C#人事管理系统 第一天.NET难点加强及XAML基础

时间:2014-10-10 23:05:44      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:os   文件   sp   on   ad   new   bs   管理   .net   

sender:代表本控件

Button btn1=(Button)sender;//拿到本控件

btn1.Text=”button控件显示的名字”;

 

集合类:

List<int> list1=new List<int>;

list1.Add(11);

list1.Add(22); //将数字22添加到集合list1中

 

类似于数组,但其中存储方式为链表,效率上不如数组

优点:可变长度

数组:

int[] a1=new int[2];

a1[0]=11;

a1[1]=22;

 

集合类其它属性:remove移除,count统计长度

MessageBox.Show(list1.count.ToString());

list1.remove(11);

 

XAML文件:

描述界面布局。xaml文件中添加属性:自动显示属性列表ctrl+j

文本框控件属性:显示与隐藏

Visibility的值是枚举类型:Visible可见 Collapsed不可见

txtBox1.Visibility=System.Windows.Visibility.Collapsed;

 

C#人事管理系统 第一天.NET难点加强及XAML基础

标签:os   文件   sp   on   ad   new   bs   管理   .net   

原文地址:http://www.cnblogs.com/huangkun-qd/p/4017596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!