-
rcp 界面程序例子
rcp 界面程序例子,描述如何在Rcp程序中个性化自己的界面
- 2022-10-17 12:55:03下载
- 积分:1
-
这一个用于使窗口界面的工具栏具有可停靠这个功能的源代码,希望有用。我现有的可有下载的机会还是0,我实在找不到其程序了,希望版主打开的限制...
这一个用于使窗口界面的工具栏具有可停靠这个功能的源代码,希望有用。我现有的可有下载的机会还是0,我实在找不到其程序了,希望版主打开的限制-make this a window for interface with the toolbar can call this function in the source code in hopes useful. I have the opportunity to download or 0, I can not find its procedures in the hope that the moderator opened the restrictions
- 2022-10-05 06:25:03下载
- 积分:1
-
本程序是一个透明窗体实例
本程序是一个透明窗体实例-this process is a transparent example of the form
- 2023-05-18 07:05:03下载
- 积分:1
-
显示倾斜的文字 显示倾斜的文字 显示倾斜的文字
显示倾斜的文字 显示倾斜的文字 显示倾斜的文字-showed the letter showed tilt in favor of the text shown in favor of the text shows the letter showe d tilt in favor of the text shows the letter tilt
- 2022-01-25 14:31:57下载
- 积分:1
-
基于c#的时钟
资源描述本源程序是基于C#的时钟设计,能为初学者提供参考价值,为初学者提供基本的编写代码思路,
namespace Clock
{
public partial class MainForm : Form
{
private PointF center;
private float r;
private Pen hourPen;
private Pen minutePen;
private Pen secondPen;
private Thread timeThread;
public MainForm()
{
InitializeComponent();
ShowInTaskbar = false;//不在任务栏中显示
SetStyle(ControlStyles.DoubleBuffer, true);
SetStyle(ControlStyles.UserPaint,true);
SetStyle(ControlStyles.AllPaintingInWmPaint,true);
center = new PointF(ClientSize.Width/ 2.0f, ClientSize.Height/ 2.0f);
r = Math.Min(ClientSize.Width / 2.0f, ClientSize.Height / 2.0f);
hourPen = new Pen(Color.Black, 2.5f);
minutePen = new Pen(Color.Black, 1.5f);
secondPen = new Pen(Color.Black, 0.5f);
timeThread=new Thread(new ThreadStart(DrawTime));
timeThread.Start();
}
protected override void OnPaint(PaintEventArgs e)
{
Graphics g = e.Graphics;
g.Clear(BackColor);
//g.SmoothingMode =
- 2022-01-26 05:22:52下载
- 积分:1
-
简单word界面编程
简单word界面编程-Simple programming interface word
- 2022-05-19 16:16:46下载
- 积分:1
-
异形窗口的实现,一起学习一下哈
异形窗口的实现,一起学习一下哈-square window to achieve together to learn about Kazakhstan
- 2023-09-09 12:05:03下载
- 积分:1
-
Visual C++6.0程序设计与开发大全.第10章.键盘和鼠标.在屏幕坐标和窗口坐标之间转换...
Visual C++6.0程序设计与开发大全.第10章.键盘和鼠标.在屏幕坐标和窗口坐标之间转换-Visual C 6.0 Design and Development Series. Chapter 10. The keyboard and mouse. The screen coordinates of the window and switch between coordinates
- 2023-01-01 02:05:03下载
- 积分:1
-
本代码在VC中实现了MDI窗口的全屏显示,运行程序后,单击视图中的"全屏"即可,按"ESC"可退出全屏....
本代码在VC中实现了MDI窗口的全屏显示,运行程序后,单击视图中的"全屏"即可,按"ESC"可退出全屏.-the code in VC MDI achieve a full-screen window, run programs, click View the "full-screen" can, by the "ESC" may withdraw from the full screen.
- 2022-02-07 01:05:39下载
- 积分:1
-
a data read from the text to the list of procedures stringGrid
一个从文本读取数据到列表stringGrid的程序-a data read from the text to the list of procedures stringGrid
- 2022-03-01 23:25:10下载
- 积分:1