论坛


2010年12月30日 星期四

Delphi实现的透明阴影以及蒙版效果菜单

不得闲| 得闲笔记 |22:24:00

QQ2010的皮肤控件目前实现了一部分,看到有些软件的菜单,都有阴影,透明等效果,于是开始重新实现菜单控件,QQ2009版的菜单控件,是自己从TComponent继承了完全模拟实现的一个菜单,虽然实现了菜单控件的效果,但是设计器没去实现,设计时候不太方便,当时也去为它?..

Implementing Artificial Intelligence with Delphi

Embarcadero| EDN Delphi Feed |22:00:00

学用 ASP.Net 之 string 类(3): 非扩展方法

万一| 万一的 Delphi 博客 |18:02:00

string 类的非扩展成员:/* 类方法 */ string.Compare; //对比, 返回 1、0 或 -1 string.CompareOrdinal; //对比, 返回序号差 string.Concat; //合并 string.Copy; //复制 string.Equals; //是否同值 string.Fo...

学用 ASP.Net 之 "字符串" (3): string 类的非扩展方法

万一| 万一的 Delphi 博客 |18:02:00

string 类的非扩展成员:/* 类方法 */ string.Compare; //对比, 返回 1、0 或 -1 string.CompareOrdinal; //对比, 返回序号差 string.Concat; //合并 string.Copy; //复制 string.Equals; //是否同值 string.Fo...

学用 ASP.Net 之 string 类(3): 方法

万一| 万一的 Delphi 博客 |18:02:00

string 类的非扩展成员:/* 类方法 */ string.Compare; //对比, 返回 1、0 或 -1 string.CompareOrdinal; //对比, 返回序号差 string.Concat; //合并 string.Copy; //复制 string.Equals; //是否同值 string.Fo...

学用 ASP.Net 之 "字符串" (2): string.Format

万一| 万一的 Delphi 博客 |00:07:00

一般应用与左右对齐:protected void Button1_Click(object sender, EventArgs e) { TextBox1.TextMode = TextBoxMode.MultiLine; string str; str = string.Format("***{0}***{1}***", "ASP.Net", 3.5); TextBox1.Text += str + "\n"; //***ASP.Net...

学用 ASP.Net 之 string 类(2): string.Format

万一| 万一的 Delphi 博客 |00:07:00

一般应用与左右对齐:protected void Button1_Click(object sender, EventArgs e) { TextBox1.TextMode = TextBoxMode.MultiLine; string str; str = string.Format("***{0}***{1}***", "ASP.Net", 3.5); TextBox1.Text += str + "\n"; //***ASP.Net...

学用 ASP.Net 之 "字符串" (1): 基础

万一| 万一的 Delphi 博客 |00:06:00

字符串连接:protected void Button1_Click(object sender, EventArgs e) { string str1="abcd", str2="efg"; str1 += str2; Response.Write(str1); //abcdefg }从字符串中提取字符:protected void Button1_Click(object sender, EventArgs e) { stri...

学用 ASP.Net 之 string 类(1): 基础

万一| 万一的 Delphi 博客 |00:06:00

字符串连接:protected void Button1_Click(object sender, EventArgs e) { string str1="abcd", str2="efg"; str1 += str2; Response.Write(str1); //abcdefg }从字符串中提取字符:protected void Button1_Click(object sender, EventArgs e) { stri...