码迷,mamicode.com
首页 >  
搜索关键字:winform    ( 5452个结果
winform无边框窗体拖动
#region 无边框窗体拖动 //获取当前鼠标坐标 private Point mPoint; private void lbl_Title_MouseDown(object sender,MouseEventArgs e) { mPoint=e.Location; } private void ...
分类:Windows程序   时间:2021-06-19 19:10:18    阅读次数:0
WinForm 打开指定网页,类似浏览器
需求:一般用于考试,窗口打开默认最大化,禁用最小化,最大化,鼠标右键,双击窗口最小化等 读取指定地址跳转,指定标题等 技术:采用CefSharp CefSharp简单来说就是一款.Net编写的浏览器包,方便你在Winform和WPF中内嵌的Chrome浏览器组件。 https://github.co ...
分类:Windows程序   时间:2021-06-16 18:13:49    阅读次数:0
C# WinForm TextBox 只能输入数字【正则替换】
private void txtMaxCount_TextChanged(object sender, EventArgs e) { //替换非数字 this.txtMaxCount.Text = Regex.Replace(this.txtMaxCount.Text, @"[^\d]*", "") ...
分类:Windows程序   时间:2021-06-05 18:15:46    阅读次数:0
在netfarmerwork3.5版本的winform下执行string串中的代码
namespace TestQuestionaire { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void bt_ok_Click(object sender, Eve ...
分类:Windows程序   时间:2021-06-04 19:41:14    阅读次数:0
WinForm应用界面开发之高质量矢量图像的使用
点击获取DevExpress v21.1完整版下载 DevExpress WinForms拥有180+组件和UI库,能为Windows Forms平台创建具有影响力的业务解决方案。DevExpress WinForms能完美构建流畅、美观且易于使用的应用程序,无论是Office风格的界面,还是分析处 ...
分类:Windows程序   时间:2021-06-02 14:08:19    阅读次数:0
用SetLayeredWindowAttributes设置winform界面透明化
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. ...
分类:Windows程序   时间:2021-06-02 13:16:08    阅读次数:0
Wcf初体验
Wcf项目代码结构如下: Book.Common:公共类库,提供公共方法。类库 Book.Models:提供实体类。类库 Book.WcfService:Wcf接口以及实现。类库 Book.WinForm:显示获取信息。winForm窗体 Hosting:服务宿主,将Wcf服务承载到一个进程中。控制 ...
分类:其他好文   时间:2021-05-24 16:39:21    阅读次数:0
WinForm应用界面开发入门指南 - Office启发式用户界面
点击获取DevExpress完整版下载 DevExpress技术交流群3:700924826 欢迎一起进群讨论 DevExpress WinForms拥有180+组件和UI库,能为Windows Forms平台创建具有影响力的业务解决方案。DevExpress WinForms能完美构建流畅、美观且 ...
分类:Windows程序   时间:2021-05-24 07:28:52    阅读次数:0
WinForm实现无边框窗体的拖动
一个登录窗体,FormBorderStyle属性设置为None,打开后不能挪动位置,有时候会妨碍使用,有点恶心。网上找了段内容,实现拖动效果: #region 无边框拖动效果,Form被PictureBox覆盖,Form事件不会被触发 [System.Runtime.InteropServices. ...
分类:Windows程序   时间:2021-05-24 04:38:38    阅读次数:0
winform 中 label透明化
label1.BackColor = Color.Transparent;//设置背景颜色为透明 label1.Parent = pictureBox1;//将pictureBox1设为标签的父控件,也可以设置其他控件作为父类 //pictureBox1.Controls.Add(label1);/ ...
分类:Windows程序   时间:2021-05-24 03:58:59    阅读次数:0
5452条   上一页 1 2 3 4 ... 546 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!