C#(WinForm)
文章平均质量分 74
LeoByTao
aaaa
展开
-
用代码编写主菜单及快捷菜单
偶一直使用VsNet2005做开发,用微软自带控件拖拉编程着实比较方便,但做为一个程序开发者,要多学多能,用代码写窗体,在此当然不建议大家都这么做(起码效率不高嘛)。但新手最好能这样做一次!下面的代码是我当时学习时,建立两个窗体,一个窗体拖控件设置属性,然后查看设计视图。在另一个代码块写代码!不要复制,要明白其意,自已写!public partial class Form6 : Form原创 2007-04-19 13:48:00 · 1522 阅读 · 0 评论 -
利用MagicLibrary控件实现类似VsNet平台界面
利用MagicLibrary控件实现VsNet平台界面:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;//加入using语原创 2007-04-19 17:01:00 · 1920 阅读 · 0 评论 -
C#中异或运算符 ^
"^"为C#当中的异或运算符,通常可以理解为"排他性"运算.运算规则如下--------------------------------------------------------------------------------------------------True ^ False True True ^ Tru原创 2007-05-05 13:35:00 · 13352 阅读 · 0 评论