-
-
DragDropListBoxSample.zip
... application. The concept is very simple: keep track of the item that is being dragged, indicate where the drop will be when the user is dragging the item around, and finally, insert the item in its new location once the user releases the mouse button.
-
Bdlg32.rar
背景贴图的例子,微软出品,包含OnPaint方式、OnEraseBkGnd方式,另外还有Bitmap Button/Static,清晰好懂
-
-
-
helloword.zip
/* GtkWidget 是构件的存储类型 */
GtkWidget *window
GtkWidget *button
/* 这个函数在所有的 GTK 程序都要调用。参数由命令行中解析出来并且送到该程序中*/
gtk_init (&argc, &argv)
/* 创建一个新窗口 */
window = gtk_window_new (GTK_WINDOW_TOPLEVEL)
-
test.zip
... ), 10)
/* 创建一个标签为 "Hello World" 的新按钮。*/
button = gtk_button_new_with_label ("hello world")
/* 当按钮收到 "clicked" 信号时会调用 hello() 函数, ... 传给
* 它作为参数。hello() 函数在前面定义了。*/
g_signal_connect (G_OBJECT (button), "clicked",
G_CALLBACK (hello), NULL)
-
-
-
3DButton.zip
用法:1:将类文件加入到你的项目中
2:在你的对话框中加入一个按纽(button),设置其文本和大小。
3:利用classwizard为按纽设置一个CButten类的值m_3dtext,然后编缉对话框的头文件,将CButten m_3dtext 改为CMyTextButton m_3dtex 在
对话框的.CPP文件中加入#include "CMyTextButton.h"
-
-