-
创建超级连接的程序,用VC实现的。类似于网页中的link。
创建超级连接的程序,用VC实现的。类似于网页中的link。-Procedures for the creation of super-connectivity with VC achievable. Similar pages link.
- 2022-05-12 19:51:23下载
- 积分:1
-
CxShadeButton示例,结合了渐进位图生成的按钮类
CxShadeButton示例,结合了渐进位图生成的按钮类-CxShadeButton example, the combination of a progressive generation of bitmap button category
- 2022-02-24 13:41:02下载
- 积分:1
-
This algorithm is a procedure. Builder 6.0 in the C compiler through.
这是一个算法实现程序. 在C++Builder 6.0编译通过.-This algorithm is a procedure. Builder 6.0 in the C compiler through.
- 2022-05-25 14:51:06下载
- 积分:1
-
button例程,一个为初学者编写的程序,帮助初学者直观的了解按扭控件的使用...
button例程,一个为初学者编写的程序,帮助初学者直观的了解按扭控件的使用-button routines, one for beginners to prepare the procedures to help beginners understand the intuitive button controls the use of
- 2022-01-26 00:02:09下载
- 积分:1
-
采用ATL/WTL编程技术实现的重画按钮类
采用ATL/WTL编程技术实现的重画按钮类-Using ATL/WTL programming techniques to achieve the re-drawing the button-type
- 2022-05-20 02:05:36下载
- 积分:1
-
几个经典的按钮(非原创)
几个经典的按钮(非原创)-several classic button (non-original)
- 2023-01-28 07:00:03下载
- 积分:1
-
增强版ComboBox,可以像窗口一样来拉伸。
增强版ComboBox,可以像窗口一样来拉伸。-Enhanced ComboBox, can be the same as the window to stretch.
- 2022-04-24 16:00:42下载
- 积分:1
-
本程序用于模仿XP explorerbar到uxtreme只支持视觉结构。
本程序模仿XP explorerbar
使用到了Uxtreme
仅支持visual studio.net 2005-This procedure used to imitate XP explorerbar to Uxtreme only supports visual studio.net 2005
- 2022-03-23 07:53:25下载
- 积分:1
-
CButtonST_Demo.rar
按钮类,很牛
CButtonST_Demo.rar
按钮类,很牛-CButtonST_Demo.rar button type, I am cow
- 2022-07-12 05:29:29下载
- 积分: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