winform相关
文章平均质量分 77
fanohaigua
这个作者很懒,什么都没留下…
展开
-
c#的 UDP接收
public partial class Form1 : Form { public Form1() { InitializeComponent(); Thread thread1 = new Thread(new ThreadStart(ReceiveData));原创 2014-09-02 09:35:26 · 555 阅读 · 0 评论 -
点击panel移动窗体
//移动窗体参数 bool beginMove = false; int currentXPosition; int currentYPosition; private void panel_up_button_MouseDown(object sender, MouseEventArgs e) {原创 2018-03-05 10:57:55 · 1307 阅读 · 0 评论 -
winform的一些小技巧
//进程延迟System.Threading.Thread.Sleep(1010);//确认对话框DialogResult clo = MessageBox.Show("是否确定XXXXXXX", "提示", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);if (clo == DialogResult.Yes){///}原创 2015-07-24 15:05:16 · 394 阅读 · 0 评论 -
datagridview的一些小技巧
//滚轮定位到选中行dataGridView1.Rows[i].Cells["Column1"].Selected = true;dataGridView1.FirstDisplayedScrollingRowIndex = dataGridView1.Rows[i].Index;//清空选择dataGridView1.ClearSelection();//添加一行i原创 2015-07-24 13:52:29 · 624 阅读 · 0 评论 -
c#打开对话框选择后输出文件路径文件名
// 获取文件夹绝对路径 显示在 txtbox 控件里System.Windows.Forms.FolderBrowserDialog folder = new System.Windows.Forms.FolderBrowserDialog();if (folder.ShowDialog() == DialogResult.OK){ textBox1.Text = folde转载 2015-05-18 13:52:31 · 4363 阅读 · 0 评论 -
winform弹窗添加后传值
主窗体:AddCodeForm ACForm = new AddCodeForm();if (ACForm.ShowDialog() == DialogResult.OK){ string code = ""; ACForm.GetCode(ref code);}弹窗窗体:public void GetCode(ref string code){原创 2016-10-10 14:37:12 · 611 阅读 · 0 评论 -
C#获取本机IPv4和IPv6地址
这个要引入命名空间using System.Net;using System.Net.Sockets;因为AddressFamily枚举类型在这个命名空间中。public static string GetLocalIP() { try { string HostName = Dns.GetHostName(); //得到主机名 IPHostEntry转载 2016-06-21 10:19:33 · 5824 阅读 · 2 评论 -
datagridview显示行号
添加datagridview的RowPostPaint事件。private void dataGridView1_RowPostPaint(object sender, DataGridViewRowPostPaintEventArgs e) { var grid = sender as DataGridView; var row转载 2015-06-12 14:02:00 · 405 阅读 · 0 评论 -
c# 打开word文件
引用Microsoft Office 14.0 Object LibraryMicrosoft Word 14.0 Object Library using MSWord = Microsoft.Office.Interop.Word; 定义private MSWord.Application m_word;private MSWord.Document m_doc; 事件 ...原创 2018-05-16 16:40:59 · 10757 阅读 · 0 评论