码迷,mamicode.com
首页 > Windows程序 > 日排行
[原创]Delphi XE10 dxLayoutControl 控件应用指南
DevExpress VCL套件是一套非常强大的界面控件,可惜关于Delphi开发方面的说明太少,有些控件使用起来一头雾水,不知从何下手。本节详细介绍在Delphi Xe10 Seattle中如何利用dxLayoutControl 控件来做界面布局。 1、 首先从工具箱面板中将dxLayoutCon ...
分类:Windows程序   时间:2017-08-27 15:18:10    阅读次数:841
C# 《五》流程控制(1)
1、分支语句之 if 语句 1、流程控制语句是程序的核心部分,对任何一门编程语言来说都至关重要,是控制程序执行流向的基本语句。如果一门语言缺少了流程控制,就会缺少对程序流向的控制,就不能称之为计算机语言。 2、C#语言提供了丰富、灵活的控制流程语句,主要分分支语句、迭代语句、跳转语句三类。 分支语句 ...
分类:Windows程序   时间:2017-08-27 15:27:05    阅读次数:180
【C#学习笔记】载入图片并居中
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2017-08-27 16:05:31    阅读次数:167
【C#学习笔记】写文件
using System; using System.IO; namespace ConsoleApplication { class Program { static void Main(string[] args) { FileStream file = new FileStream("log.... ...
分类:Windows程序   时间:2017-08-27 16:05:48    阅读次数:199
【C#学习笔记】播放wma/mp3文件
using System; using System.Runtime.InteropServices; namespace ConsoleApplication { class Program { [DllImport("winmm.dll")] public static extern uint ... ...
分类:Windows程序   时间:2017-08-27 16:05:57    阅读次数:241
【C#学习笔记】检测进程是否存在并关闭
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2017-08-27 16:06:36    阅读次数:234
【C#学习笔记】获得系统时间
using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { Console.Write(DateTime.Now); Console.ReadKey... ...
分类:Windows程序   时间:2017-08-27 16:07:00    阅读次数:191
【C#学习笔记】指针使用
using System; namespace ConsoleApplication2 { class Program { static void Main(string[] args) { int a = 5; unsafe { int* p... ...
分类:Windows程序   时间:2017-08-27 16:07:09    阅读次数:176
【C#学习笔记】播放wav文件
using System; using System.Media; namespace ConsoleApplication { class Program { static void Main(string[] args) { SoundPlayer s = new SoundPlayer("te... ...
分类:Windows程序   时间:2017-08-27 16:08:03    阅读次数:196
【C#学习笔记】网页弹出提示框
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace W... ...
分类:Windows程序   时间:2017-08-27 16:08:25    阅读次数:176
【C#学习笔记】Dictionary容器使用
using System; using System.Collections.Generic; namespace ConsoleApplication { class Program { static void Main(string[] args) { Dictionary a = new Di... ...
分类:Windows程序   时间:2017-08-27 16:08:33    阅读次数:216
【C#学习笔记】改变字体
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2017-08-27 16:08:40    阅读次数:284
【C#学习笔记】打开对话框并返回打开文件所在路径
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2017-08-27 16:09:11    阅读次数:222
【C#学习笔记】函数重载
using System; namespace ConsoleApplication { class Program { static void Print(int a, int b) { Console.Write(a + b); } static void Print(string a... ...
分类:Windows程序   时间:2017-08-27 16:10:00    阅读次数:240
【C#学习笔记】文本复制到粘贴板
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2017-08-27 16:10:17    阅读次数:217
【C#学习笔记】获得本机IP
using System; using System.Net; namespace ConsoleApplication { class Program { static void Main(string[] args) { IPHostEntry ipHost = Dns.GetHostEntry... ...
分类:Windows程序   时间:2017-08-27 16:10:25    阅读次数:148
【C#学习笔记】保存文件
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2017-08-27 16:10:50    阅读次数:223
【C#学习笔记】类型转换
using System; namespace ConsoleApplication { class Program { static void Main(string[] args) { string a = "1234"; int b = Convert.ToInt32(a)+1; ... ...
分类:Windows程序   时间:2017-08-27 16:12:03    阅读次数:203
【C#学习笔记】smtp发邮件
using System; using System.Net; using System.Net.Mail; using System.Text; namespace ConsoleApplication { class Program { static void Main(string[] arg... ...
分类:Windows程序   时间:2017-08-27 16:12:10    阅读次数:201
【C#学习笔记】浏览目录得到路径
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.... ...
分类:Windows程序   时间:2017-08-27 16:13:06    阅读次数:200
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!