unit Unit1;interfaceusesWindows, Messages,
SysUtils, Variants, Classes, Graphics, Controls, Forms,Dialogs, StdCtrls;const
InputboxMessage = WM_USER + ...
分类:
其他好文 时间:
2014-05-12 19:20:32
阅读次数:
314
Essential HTMLUI for Windows
Forms是一款WinForm控件用于呈现HTML,功能很像一个Web浏览器,支持各种各样的HTML标签,可以显示丰富的HTML文档,支持导出和打印。
具体功能:HTMLUI是一款完全与浏览器独立的控件,支持以URL的形式打开HTML支持.....
分类:
Web程序 时间:
2014-05-12 15:35:53
阅读次数:
378
Essential Diagram for Windows
Forms是一款可扩展的、高性能的.NET平台下的绘图控件,可用于开发像Microsoft
Visio一样的交互式地绘图和图解应用程序,在节点存储图形对象,支持矢量和光栅图形。
unit Unit1;interfaceuses Winapi.Windows,
Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, V.....
方法2unit Unit1;interfaceuses Winapi.Windows,
Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, ...
分类:
移动开发 时间:
2014-05-09 08:45:39
阅读次数:
315
在Framework中存在着4种定时器:其中分为两类,多线程计时器1:System.Threading.Timer2:System.Timers.Timer特殊目的的单线程计时器:1:System.Windows.Forms.Timer(Windows
Forms Timer)2:System.Wi...
分类:
其他好文 时间:
2014-05-09 05:00:21
阅读次数:
283
这个是在昨天的基础上做的更改,测试已经满足大家的要求,如果谁有更好的办法也请交流一下
下面是代码:
'sunnyxing2004-04-01最后修改
Public Class MyTextBox
Inherits System.Windows.Forms.TextBox
Private m_strValidText As String = "0123456789.+...
分类:
其他好文 时间:
2014-05-09 01:56:38
阅读次数:
309
在前面的章节中我们知道可以在MVC应用程序中使用[Authorize]特性来限制用户对某些网址(控制器/控制器方法)的访问,但这都是在对用户认证之后,而用户的认证则依然是使用ASP.NET平台的认证机制。ASP.NET提供Windows和Forms两种身份验证,前者主要用于Intranet上域环境内...
分类:
Web程序 时间:
2014-05-09 00:07:46
阅读次数:
510
using System;using System.Collections.Generic;using
System.Linq;using System.Text;using System.Windows.Forms;namespace Common{ ///
/// TextBox控...
分类:
其他好文 时间:
2014-05-08 19:15:06
阅读次数:
293
private void treeView1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
if(e.Button==MouseButtons.Right)
{
TreeNode tn=treeView1.GetNodeAt(e.X,e.Y);
if(tn!=null)treeView1.SelectedNode...
分类:
其他好文 时间:
2014-05-08 16:24:44
阅读次数:
308