码迷,mamicode.com
首页 > Web开发 > 详细

一些很酷的.Net技巧

时间:2014-10-17 21:47:48      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:winform   style   blog   http   color   io   os   ar   使用   

原作出处:http://www.codeproject.com/useritems/tips.asp?df=100

一..Net Framework

1.  如何获得系统文件夹

使用System.Envioment类的GetFolderPath方法;例如:

Environment.GetFolderPath( Environment.SpecialFolder.Personal )

2.  如何获得正在执行的exe文件的路径

1)  使用Application类的ExecutablePath属性

2)  System.Reflection.Assembly.GetExecutingAssembly().Location

3.  如何检测操作系统的版本

使用EnviomentOSVersion属性,例如:

OperatingSystem os = Environment.OSVersion;

MessageBox.Show(os.Version.ToString());

MessageBox.Show(os.Platform.ToString());

4.  如何根据完整的文件名获得文件的文件名部分、

使用System.IO.Path类的方法GetFileName或者GetFileNameWithoutExtension方法

5.  如何通过文件的全名获得文件的扩展名

使用System.IO.Path.GetExtension静态方法

6.  Vbc#的语法有什么不同click here

7.  如何获得当前电脑用户名,是否联网,几个显示器,所在域,鼠标有几个键等信息

使用System.Windows.Forms. SystemInformation类的静态属性

8.  修饰Main方法的[STAThread]特性有什么作用

标示当前程序使用单线程的方式运行

9.  如何读取csv文件的内容

通过OdbcConnection可以创建一个链接到csv文件的链接,链接字符串的格式是:"Driver={Microsoft Text Driver (*.txt;*.csv)};Dbq="+cvs文件的文件夹路径+"          Extensions=asc,csv,tab,txt; Persist Security Info=False";

创建连接之后就可以使用DataAdapter等存取csv文件了。

详细信息见此处

10. 如何获得磁盘开销信息,代码片断如下,主要是调用kernel32.dll中的GetDiskFreeSpaceEx外部方法。

 

 

bubuko.com,布布扣public sealed class DriveInfo
bubuko.com,布布扣
{
bubuko.com,布布扣    [DllImport(
"kernel32.dll", EntryPoint = "GetDiskFreeSpaceExA")]
bubuko.com,布布扣    
private static extern long GetDiskFreeSpaceEx(string lpDirectoryName,
bubuko.com,布布扣        
out long lpFreeBytesAvailableToCaller,
bubuko.com,布布扣        
out long lpTotalNumberOfBytes,
bubuko.com,布布扣        
out long lpTotalNumberOfFreeBytes);
bubuko.com,布布扣
bubuko.com,布布扣    
public static long GetInfo(string drive, out long available, out long total, out long free)
bubuko.com,布布扣    
{
bubuko.com,布布扣        
return GetDiskFreeSpaceEx(drive, out available, out total, out free);
bubuko.com,布布扣    }

bubuko.com,布布扣
bubuko.com,布布扣    
public static DriveInfoSystem GetInfo(string drive)
bubuko.com,布布扣    
{
bubuko.com,布布扣        
long result, available, total, free;
bubuko.com,布布扣        result 
= GetDiskFreeSpaceEx(drive, out available, out total, out free);
bubuko.com,布布扣        
return new DriveInfoSystem(drive, result, available, total, free);
bubuko.com,布布扣    }

bubuko.com,布布扣}

bubuko.com,布布扣
bubuko.com,布布扣
public struct DriveInfoSystem
bubuko.com,布布扣
{
bubuko.com,布布扣    
public readonly string Drive;
bubuko.com,布布扣    
public readonly long Result;
bubuko.com,布布扣    
public readonly long Available;
bubuko.com,布布扣    
public readonly long Total;
bubuko.com,布布扣    
public readonly long Free;
bubuko.com,布布扣
bubuko.com,布布扣    
public DriveInfoSystem(string drive, long result, long available, long total, long free)
bubuko.com,布布扣    
{
bubuko.com,布布扣        
this.Drive = drive;
bubuko.com,布布扣        
this.Result = result;
bubuko.com,布布扣        
this.Available = available;
bubuko.com,布布扣        
this.Total = total;
bubuko.com,布布扣        
this.Free = free;
bubuko.com,布布扣    }

bubuko.com,布布扣}

bubuko.com,布布扣


 

可以通过

DriveInfoSystem info = DriveInfo.GetInfo("c:");来获得指定磁盘的开销情况

 

11.如何获得不区分大小写的子字符串的索引位置

         1)通过将两个字符串转换成小写之后使用字符串的IndexOf方法:

 

 

bubuko.com,布布扣string strParent = "The Codeproject site is very informative.";
bubuko.com,布布扣
bubuko.com,布布扣
string strChild = "codeproject";
bubuko.com,布布扣
bubuko.com,布布扣
// The line below will return -1 when expected is 4.
bubuko.com,布布扣
int i = strParent.IndexOf(strChild);
bubuko.com,布布扣
bubuko.com,布布扣
// The line below will return proper index
bubuko.com,布布扣
int j = strParent.ToLower().IndexOf(strChild.ToLower());
bubuko.com,布布扣

 

        2)

  一种更优雅的方法是使用System.Globalization命名空间下面的CompareInfo类的IndexOf方法:

 

 

bubuko.com,布布扣using System.Globalization;
bubuko.com,布布扣
bubuko.com,布布扣
string strParent = "The Codeproject site is very informative.";
bubuko.com,布布扣
bubuko.com,布布扣
string strChild = "codeproject";
bubuko.com,布布扣
// We create a object of CompareInfo class for a neutral culture or a culture insensitive object
bubuko.com,布布扣
CompareInfo Compare = CultureInfo.InvariantCulture.CompareInfo;
bubuko.com,布布扣
bubuko.com,布布扣
int i = Compare.IndexOf(strParent,strChild,CompareOptions.IgnoreCase);
bubuko.com,布布扣

 

. OOPs

1. 什么是复制构造函数

  我们知道构造函数是用来初始化我们要创建实例的特殊的方法。通常我们要将一个实例赋值给另外一个变量c#只是将引用赋值给了新的变量实质上是对同一个变量的引用,那么我们怎样才可以赋值的同时创建一个全新的变量而不只是对实例引用的赋值呢?我们可以使用复制构造函数。

我们可以为类创造一个只用一个类型为该类型的参数的构造函数,如:

 

 

bubuko.com,布布扣public Student(Student student)
bubuko.com,布布扣
{
bubuko.com,布布扣 
this.name = student.name;
bubuko.com,布布扣}

bubuko.com,布布扣

 

使用上面的构造函数我们就可以复制一份新的实例值,而非赋值同一引用的实例了。

bubuko.com,布布扣class Student
bubuko.com,布布扣
{
bubuko.com,布布扣     
private string name;
bubuko.com,布布扣
bubuko.com,布布扣     
public Student(string name)
bubuko.com,布布扣     
{
bubuko.com,布布扣         
this.name = name;
bubuko.com,布布扣     }

bubuko.com,布布扣     
public Student(Student student)
bubuko.com,布布扣     
{
bubuko.com,布布扣         
this.name = student.name;
bubuko.com,布布扣     }

bubuko.com,布布扣
bubuko.com,布布扣    
public string Name 
bubuko.com,布布扣    
{
bubuko.com,布布扣       
get 
bubuko.com,布布扣       
{
bubuko.com,布布扣              
return name; 
bubuko.com,布布扣       }

bubuko.com,布布扣       
set 
bubuko.com,布布扣       
{
bubuko.com,布布扣            name 
= value; 
bubuko.com,布布扣       }

bubuko.com,布布扣    }

bubuko.com,布布扣}

bubuko.com,布布扣
bubuko.com,布布扣
class Final
bubuko.com,布布扣
bubuko.com,布布扣
{
bubuko.com,布布扣
bubuko.com,布布扣    
static void Main()
bubuko.com,布布扣
bubuko.com,布布扣      
{
bubuko.com,布布扣
bubuko.com,布布扣        Student student 
= new Student ("A");
bubuko.com,布布扣
bubuko.com,布布扣        Student NewStudent 
= new Student (student);
bubuko.com,布布扣
bubuko.com,布布扣        student.Name 
= "B";
bubuko.com,布布扣
bubuko.com,布布扣        System.Console.WriteLine(
"The new student‘s name is {0}", NewStudent.Name);
bubuko.com,布布扣
bubuko.com,布布扣      }

bubuko.com,布布扣
bubuko.com,布布扣}

bubuko.com,布布扣

 

The new student‘s name is A.

2.什么是只读常量

就是静态的只读变量,它通常在静态构造函数中赋值。 

bubuko.com,布布扣class Numbers
bubuko.com,布布扣
{
bubuko.com,布布扣    
public readonly int m;
bubuko.com,布布扣    
public static readonly int n;
bubuko.com,布布扣
bubuko.com,布布扣    
public Numbers (int x)
bubuko.com,布布扣    
{
bubuko.com,布布扣       m
=x;
bubuko.com,布布扣    }

bubuko.com,布布扣
bubuko.com,布布扣    
static Numbers ()
bubuko.com,布布扣    
{
bubuko.com,布布扣        n
=100;
bubuko.com,布布扣    }

bubuko.com,布布扣
bubuko.com,布布扣 }
 //其中n就是一个只读的常量,对于该类的所有实例他只有一种值,而m则根据实例不同而不同
bubuko.com,布布扣

 

三.VS.Net IDE

1. 2请看原作

3.如何改变region的颜色

   通过工具à选项à环境à字体和颜色à可折叠文本设置

 

四.WinForm

1.如何使winForm不显示标题栏?

通过设置formText属性为空字符串,设置ControlBox属性为false

form1.Text = string. Empty;

form1.ControlBox = false;

2.如何使winform的窗体使用XP的风格

见原作

3.如何禁止form在工具栏显示

设置formShowInTaskbar属性为false即可

4.如何使程序打开默认的邮件程序并带有一些参数让用户开始写邮件

         1)如果是web程序:

         <a href=”mailto:email@address1.com,email@address2.com?cc=email@address3.com&Subject=Hello&body=Happy New Year”>some text</a>

         2) 对于windows程序,需要使用System.Diagnostics.Process

bubuko.com,布布扣Process process = new Process();
bubuko.com,布布扣process.StartInfo.FileName 
= "mailto:email@address1.com,email@address2.com?subject=Hello&cc=email@address3.com
bubuko.com,布布扣
&bcc=email@address4.com&body=Happy New Year" ;
bubuko.com,布布扣

bubuko.com,布布扣process.Start();
bubuko.com,布布扣

5.如何创建类似msn提示窗口

需要获得通过Screen.GetWorkingArea(this).WidthHeight)属性获得屏幕的大小,然后使用一个timer根据时间改变窗口的位置

五.Button控件

1.如何设置form的默认button(即在form上按下回车时触发的button

         可以设置formAcceptButton属性:form1.AcceptButton = button1;

2. 如何设置form的取消button(即在用户按下Esc键时触发的button

         可以设置formCancelButton属性:form1.CancelButton = buttonC;

3. 如何通过程序触发一个buttonClick事件

         Button1.PerformClick

 

六.Combo Box

1.如何使用可选字体填充Combo Box

comboBox1.Items.AddRange (FontFamily.Families);

 

七.TextBox

1.如何禁用TextBox的默认上下文菜单(右键菜单)

textBox1.ContextMenu = new ContextMenu();

2,3 见原作

4.如何在TextBox获得焦点的时候,将焦点放在textBox文字的最后

textBox1.SelectionStart = textBox1.Text.Length;

 

出处:http://www.cnblogs.com/yukaizhao/archive/2007/04/08/dotnet_tips_cool.html

一些很酷的.Net技巧

标签:winform   style   blog   http   color   io   os   ar   使用   

原文地址:http://www.cnblogs.com/mq0036/p/4032034.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!