C#中的格式化字符串
摘要:从今天起,积累格式化字符串一、准备工作: 我们需要在web.Config中指定区域性,不然中文Server换英文Server,¥就变$。 <globalizationculture="zh-CN"uiCulture="zh-CHS"/>查看区域性名称列表二、货币(一)C或者c1.补齐2位小数 Console.Write("{0:C}", 25); ¥25.00 Console.Writ...
阅读全文
[C# WinForm] How to: Get the Name of a DataGrid Column
摘要:This is a formidable mission!:)But a complex question always has a simple answer private void dataGrid1_MouseDown(object sender, MouseEventArgs e){ DataGrid.HitTestInfo hti= ((DataGrid) sender).Hi...
阅读全文
[C# winform]How To:Create and use TrayIcon Control
摘要:step1. Create a solution with C# winfrom project. now,we hava a new Form named "form1" step2. Drag-Drop an NotifyIcon control named "notifyIcon1" step3. Drag-Drop a ContextMenu control named "contextM...
阅读全文