- 博客(4)
- 资源 (3)
- 收藏
- 关注
原创 Excel转换成XML文件
Excel转换成XML文件(根据不同需求配制语句),本程序的特点是可以指定Excel的任一子表。(穷鬼求分,勿喷...) using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Te
2012-08-24 16:40:48
1780
原创 C#中的DateTimePicker控件焦点默认在日期中的日位置
有些软件的时效性比较强,首先需要进行的是修改DateTimePicker控件上的“天”,通过下拉表进行选择的话并不算方便,直接输入又需从年切换至月再切换至日,如此太麻烦,能把焦点直接定位到日上就方便多了。(注意TabIndex对焦点的影响) 普通情况下: Code1: private void FormMain_Load(object sender, EventArgs e)
2012-08-24 14:43:32
5805
转载 初学乍练WPF
WPF控件分类 在WPF中,控件的基类为Object,按照继承类的不同分为四类: 1.ContentControl——内容控件 继承自System.Windows.Controls.ContentControl;内建的内容控件分为3类: 1)按钮:Button、RepeatButton、ToggleButton、RadioButton、CheckBox
2012-08-23 16:57:31
2503
原创 链表的处理(《数据结构》例题)
#include"stdio.h"#include"stdlib.h"#define ElemType inttypedef struct node{ ElemType data;struct node *next;}Lnode;Lnode *p,*q,*s,*head;void outlin(Lnode *h);void creat();void insert(Lnode *h,ElemType
2009-09-17 21:50:00
588
Visual C++课程设计案例精编
2009-12-02
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅