-
MFC图标去边城许晴石勇
MFC icon de bian cheng xu qing shi yong-MFC icon de bian cheng shi yong xu qing
- 2023-08-18 09:25:03下载
- 积分:1
-
这是一个曲线或柱状的形式的真实
这是一款可以以曲线或柱状图的形式实时动态显示数据的控件。 主要特点是:支持显示浮点数、负数,显示数据范围大、可以自定义显示范围也可自动选择范围,还可锁定显示范围。-This a can of a curve or column in the form of real-time dynamic display of data control. The main features are : support shown float, negative, showing the scope of the data, since the definition can also indicate the scope of automatic choices, but also locked display area.
- 2023-07-26 23:20:07下载
- 积分:1
-
更改网格行可见性
翻译 maninwest@Codeforge 作者 K K Srinivasan@CodeProject这里是如何更改网格行的可见性的技巧。背景其实,更改网格行的可见性有很多方法。这里是我自己的方法。基于布尔值更改可见性。在开始之前,了解一下可见模式可见– 控件始终在布局中并显示给用户。收起 – 控件不显示在布局中。其他控件发生布局调整。隐藏 –控件不显示但是会保留在布局中的位置。未发生调整。使用代码Step 1:我只通过我创建的演示 APP 来解释代码。定义类中的布尔属性。可以使用依赖属性或者 INotifyPropertyChanged 界面获得更改通知。这里,我将布尔属性定义为依赖属性。 public static readonly DependencyProperty SetVisibilityProperty = DependencyProperty.Register("SetVisibi lity",typeof(bool),typeof(AddWindow));
public bool SetVisibility
{
get { return (bool)this.GetValue(SetVisibilityProperty); }
set
{
SetValue(SetVisibilityPro
- 2022-06-21 19:56:48下载
- 积分:1
-
一个按钮控件的例子,一个控制按钮的例子,
一个按钮控件实例,
一个按钮控件实例,-example of a button control, a control button examples,
- 2022-06-28 04:42:51下载
- 积分:1
-
inside several procedures, which can be used for variety of button controls prog...
里边有几个程序,可以用来实现多姿多彩的按钮控件编程,很好用的-inside several procedures, which can be used for variety of button controls programming, the good
- 2023-05-04 06:30:03下载
- 积分:1
-
EXCEL加载宏(ExcelAddin)是一套用于开发Excel 加载宏( 插件) 的免费开发框架...
EXCEL加载宏(ExcelAddin)是一套用于开发Excel 加载宏( 插件) 的免费开发框架-EXCEL Add-in (ExcelAddin) is a set for the development of Excel add-in (plug-in) of free development framework
- 2022-05-05 14:16:33下载
- 积分:1
-
可以通过使用此代码测试CPU的使用情况,了解自己CPU的运行情况...
可以通过使用此代码测试CPU的使用情况,了解自己CPU的运行情况-can use this code testing the use of the CPU and understand their operation of the CPU
- 2022-06-18 15:33:05下载
- 积分:1
-
添加IE按钮方便、快捷、实用,让你添加个性化的按钮!
添加IE按钮方便、快捷、实用,让你添加个性化的按钮!-IE button to add convenient, fast, practical and allows you to add a personalized button!
- 2022-02-12 05:22:18下载
- 积分:1
-
谷 歌 Chrome进度条
翻译 maninwest@Codeforge 作者:VallarasuS@CodeProject这里展示如何从头开始创建一个 Go ogle Chrome 主题的 进度条。任何进度条控件都依赖于一个值及表示进度值的图形。 Goo gle Chrome 下载程序有个圆圈表示进度。使用代码ChromeProgressBaris 跟 Chrome ProgressBar 的工作原理一样。将进度值转化为一个圆圈图形来表示.private void PaintProgress(PaintEventArgs e)
{ using( SolidBrush progressBrush = new SolidBrush(this.ProgressColor))
{
Rectangle rect = LayoutInternal.ProgressRectangle;
rect.Inflate(-2, -2);
rect.Height -= 2; rect.Width -= 2; float startAngle = -90; float sweepAngle = Progress / 100 * 360;
e.Graphics.FillPie(progressBrush, rect, startAngle, sweepAngle);
}
}这里是如何使用图形路径和4条线绘制圆圈和细分部分。对 Graphics 对象的剪切部分进行调整来剪切圆圈外的线。private void PaintBorder(PaintEventArgs e)
{
GraphicsPath borderPath = new GraphicsPath();
Rectangle progressRect = LayoutInternal.Prog
- 2022-08-08 07:55:37下载
- 积分:1
-
修改标题栏的颜色,你可以定义自己的颜色,这是很方便的
修改titlebar颜色,可以自己定义其颜色,十分方便-Modify titlebar color, you can define its own color, which is very convenient
- 2023-04-28 01:20:04下载
- 积分:1