.Net
文章平均质量分 63
rcom10002
这个作者很懒,什么都没留下…
展开
-
Thread and Sync In C# (C#中的线程与同步)
Dont believe everything theyve told you. Threads in C# are actually pretty easy. 别相信别人告诉你的所有的事。其实C#中的线程是很简单的。A thread is an encapsulation of the flow of control in a program. you might be used t翻译 2004-10-29 19:16:00 · 6303 阅读 · 0 评论 -
一个截屏工具制作的全过程记录——代码清单
清单中的代码可以通过下面的命令进行手工编译:csc /target:winexe *.cs最终的运行效果图如下:XP环境下测试过,快捷键:Win+X(开启或隐藏选图区域),Win+C(把截图保存到内存中),Win+S(把截图保存到文件中)。以下内容为代码清单:using System;using System.Windows.Forms;using Sy原创 2013-04-17 17:17:48 · 2169 阅读 · 0 评论 -
一个截屏工具制作的全过程记录——如何使用“拿来主义”
第一部分,截屏功能的实现利用关键字“.netcapture speicified area”在Google中搜索现成的答案,从答案中,我直接进行“相面”,打开看起来比较满足条件的第二和第三条记录。逐个打开搜索结果看一看,比较符合我的要求的是“http://stackoverflow.com/questions/3306600/c-how-to-take-a-screenshot-o原创 2013-04-17 16:31:02 · 1776 阅读 · 0 评论 -
如何在Winform中计算文字尺寸
参考文档:http://msdn.microsoft.com/en-us/library/exkzzayx.aspx,http://www.dev102.com/2008/10/09/measure-string-size-in-pixels-c/方法一:Graphics graphics = this.CreateGraphics();SizeF textSize = graphics原创 2012-11-23 17:19:01 · 2040 阅读 · 0 评论 -
通过计算窗体工作区来模拟FormBorderStyle=None
this.ClientSize = new Size(480, 270); Rectangle rectangleToScreen = this.RectangleToScreen(this.ClientRectangle); int topOffset = rectangleToScreen.Y - this.Top; i原创 2012-11-28 08:08:46 · 1129 阅读 · 0 评论 -
Winform自定义窗体与控件的外观形状
在开发的时候,有时我们需要自定义窗体,各种奇怪的形状都有可能,这里举一个利用Region自定义外观的例子。下图就是一个自定义十字形的窗体,和一个居中显示的蓝色自定义外形的按钮。代码可以分为两个部分,一个是绘制按钮的,一个是绘制窗体的。窗体外形定义比较简单,只是用了四行代码,当然,这也是因为外观简单而已;其余的代码都是为自定义按钮服务的。 public class Sp原创 2012-11-27 14:40:41 · 5920 阅读 · 0 评论 -
让自定义Prompt窗体中在BackgroundWorker中使用COM组件WebBrowser
技术点:自定义实现Prompt输入对话框;匿名方法;BackgroundWorker与WebBrowser控件结合使用。原创 2011-06-01 21:13:00 · 1679 阅读 · 0 评论 -
C#/CSharp - 禁用Form的关闭按钮
C#/CSharp 禁用Form的关闭按钮原创 2011-05-18 20:26:00 · 4374 阅读 · 1 评论 -
C#实现越过CSDN博客中不能使用CSS的style标签功能
目的,博客文章中使用自己的style标签!!! CSDN的博客不断改版,完善程度也在增加,但限制也随之增加了,比如以前是可以使用自定义CSS的style标签的,可现在被禁用了,这样本来在本地调整很好的样式就不能很方便的粘贴到博客使用了。怎么办?DIY好了!开发环境 Visual Studio 2005IE8 应用实现与操作流程 第一步,画面布局需要四个组原创 2009-08-19 11:58:00 · 1073 阅读 · 0 评论 -
Events Sample Code(2)
using System;namespace ConsoleApp_CSXP{ class 小弟 { //1.聲明事件委託 public delegate void 被人扁(object sender, EventArgs e); //2.聲明事件實例 public event 被人扁 挨扁; //3.包含事件 private void 挨扁了(EventArgs e) { if原创 2005-09-14 14:12:00 · 1280 阅读 · 0 评论 -
Events Sample Code(1)
using System;namespace ConsoleApp_CS{ class 小弟 { //1.聲明事件實例 public event EventHandler 挨扁; //2.包含事件 private void 挨扁了(EventArgs e) { if(this.挨扁 != null) this.挨扁(this, e); } //3.觸發事件 public原创 2005-09-14 14:10:00 · 1349 阅读 · 0 评论 -
Introduction to DataSets and working with XML files
Introduction to DataSets and working with XML filesBy Alexandru Savescu 数据集与XML文件的使用介绍This article gives you an introduction to .NETs DataSets and how you can use them with XML files 这篇文章介绍了.翻译 2005-01-11 21:13:00 · 1500 阅读 · 0 评论 -
Check Your Internet Connection With C#
Check Your Internet Connection With C#By Simohamed Attahri 用C#检测你的网络连接How to check if your computer is connected to the internet with C#. Its much more easier that other tutorials Ive seen in ot翻译 2005-01-11 21:08:00 · 2035 阅读 · 0 评论