-
克隆按钮方便你可以改变参数
to clone ibuttons easy and you can change parameters
- 2022-06-17 19:08:51下载
- 积分:1
-
ExtJS主要的按键布局和事件提出申请,
extjs 主要应用了button的布局,和事件提交-extjs main application of the button layout, and events presented
- 2022-04-11 05:58:35下载
- 积分:1
-
Windows颜色选择器(VB类代码)
这是一款打开windows颜色选择器的VB类代码,在VB编写过程中可方便引用,简化重复代码编写,引用示例如下:
Sub Testfont()
Dim mfont As New FontPicker
mfont.SetFont
Debug.Print mfont.Name
Debug.Print mfont.Size
Debug.Print mfont.UnderLine
Debug.Print mfont.Color
End Sub
- 2022-01-26 03:36:58下载
- 积分:1
-
一个简单的控件的源代码,maskedbox的控件。
一个简单的控件的源代码,maskedbox的控件。-a simple control of the source code, maskedbox the controls.
- 2022-05-19 15:28:55下载
- 积分:1
-
采用jquery技术实现的弹出框提示,友好的提示页面,丰富的展现形式。...
采用jquery技术实现的弹出框提示,友好的提示页面,丰富的展现形式。-Jquery technology implementation using the pop-up box prompts friendly tips page to show the form of the rich.
- 2023-01-24 18:45:04下载
- 积分:1
-
advanced graphics buttons, VC.NET design, free resources, exchange welcome
高级图形按钮,VC.NET设计,免费资源,欢迎交流-advanced graphics buttons, VC.NET design, free resources, exchange welcome
- 2022-04-10 23:58:38下载
- 积分:1
-
Enhanced Colored ButtonBy using CColorButton, you can: Change, at any time, any...
Enhanced Colored Button
By using CColorButton, you can:
Change, at any time, any of the seven colors needed to draw a button
Align the text at any position
Use multi-line text
Create buttons dynamically
Change the default font of the text -Enhanced Colored ButtonBy using CColorButton, you can: Change, at any time, any of the seven colors needed to draw a button Align the text at any position Use multi-line text Create buttons dynamically Change the default font of the text
- 2022-02-05 04:30:51下载
- 积分:1
-
实现背景透明的按钮类(306KB)
实现背景透明的按钮类(306KB)-achieve transparent background category buttons (306KB)
- 2023-01-22 16:00:03下载
- 积分:1
-
回读数据,通过读取excel里的数据,保存到sql server200数据库中...
回读数据,通过读取excel里的数据,保存到sql server200数据库中-Read-back data, by reading the data in excel, save it to database sql server200
- 2023-04-26 11:10:03下载
- 积分: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