当前位置:首页 > Windows程序 >

文章分类:Windows程序

Windows程序 C# 静态构造函数使用

当我们想初始化一些静态变量的时候,就需要用到静态构造函数了。这个静态构造函数是属于类的,而不是属于哪里……

Windows程序 (译)Asynchronous programming and Threading in C# (.NET 4.5)

原文地址:http://www.codeproject.com/Articles/996857/Asynchronous-programming-and-Threading-in-Csharp-N介绍:Asynchronous programming and threa……

Windows程序 关于 Delphi 中流的使用(7) 压缩与解压缩(TCompressionStream、TDecompressionS

unit Unit1;interfaceuses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls;type TForm1 = class(TForm) Butt..……

Windows程序 执行命令清空文本框

一、造一个窗体,在窗体里面先造一个StackPanel,然后再StackPanel里面放好按钮和文本框,注意给所有的控件和容器起名……

Windows程序 c#中DropDownList控件绑定枚举数据

c# asp.net 中DropDownList控件绑定枚举数据1.枚举(enum)代码:private enum heros { 德玛 = 0, 皇子 = 10, 大头 = 20, 剑圣 = 30, }如果不……

Windows程序 基于 Gulp 的前端集成解决方案(一)

一、准备工作 1、什么是 npm? npm 是nodejs的包管理工具,主要功能就是管理、更新、搜索、发布node的包。Gulp 就是通过……

Windows程序 Winform开发常用控件之DataGridView的简单数据绑定

DataGridView控件可谓是Winform开发的重点控件,对于数据的呈现和操作非常方便,DataGridView可谓是既简单又复杂。简单在……

Windows程序 Windows下Nginx的安装与配置(转)

一、首先去官网下载 nginx1.0.11的Windows版本,官网下载:http://nginx.org/download/nginx-1.0.11.zip下载到软件包后,解压 nginx……

Windows程序 C#获取CPUID(MD5输出),网卡ID,主DNS,备用DNS

using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u.……

Windows程序 07、在 Windows10 上获得屏幕分辨率

因为在 win10 上,app 在运行的时候,默认不是占满全屏幕,并且 windows runtime 当前没有提供获取屏幕尺寸的 api。在桌面……