- 5
- 0
- 约5.55千字
- 约 10页
- 2017-02-17 发布于北京
- 举报
PHP开发Windows桌面应用程序实例Word文档
PHP开发Windows桌面应用程序实例
PHP_GTK2.0 开发桌面应用程序
php gtk 官方网站/官方有gtk的中文手册 具体安装请参见 手册更简单的方法是用另外一款软件 名字叫做gnope下载地址:/download.php安装过程很简单 安装好之后 在桌面会有个PHP-Gtk2 Applications 的快捷方式图标双击该图标 会出现一个php的桌面程序 里面列出了所有的demo 有控件演示 还有游戏(前提是安装时选择了安装游戏)应用详细讲解:/tp15/site/index.php和/zhangking/archive/2010/08/20/5825416.aspx看过这些程序 你是不迫不及待要自己莱写一个桌面应用程序了啊下面就给出一个简单的登陆程序:
?php
if (!class_exists(‘gtk’)) {
die(lease load the php-gtk2 module in your php.ini\r\n);
}
function login(GtkWindow $wnd, GtkEntry $txtUsername, GtkEntry $txtPassword)
{
$strUsername = $txtUsername-get_text();
$strPassword = $txtPassword-get_text();
$errors = null;
if (strlen($strUsername) == 0) {
$errors .= Username is missing.\r\n;
}
if (strlen($strPassword) == 0) {
$errors .= No password given.\r\n;
}
if ($errors !== null) {
$dialog = new GtkMessageDialog($wnd, Gtk::DIALOG_MODAL,
Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, $errors);
$dialog-set_markup(
The following errors occured:\r\n
. span foreground=’red’ . $errors . /span
);
$dialog-run();
$dialog-destroy();
}
else {
$wnd-destroy();
}
}
$wnd = new GtkWindow();
$wnd-set_title(‘Login’);
$wnd-connect_simple(‘destroy’, array(‘gtk’, ‘main_quit’));
$txtUsername = new GtkEntry();
$txtPassword = new GtkEntry();
$lblUsername = new GtkLabel(‘_Username’,true);
$lblPassword = new GtkLabel(‘_Password’,true);
$btnLogin = new GtkButton(‘_Login’);
$btnCancel = new GtkButton(‘_Cancel’);
$lblUsername-set_mnemonic_widget($txtUsername);
$lblPassword-set_mnemonic_widget($txtPassword);
$btnCancel-connect_simple(‘clicked’,array($wnd,’destroy’));
$btnLogin-connect_simple(‘clicked’,login’,$wnd,$txtUsername,$txtPassword);
$tbl = new GtkTable(3,2);
$tbl-attach($lblCredit,0,2,0,1);
$tbl-attach($lblUsername,0,1,1,2);
$tbl-attach($txtUsername,1,2,1,2);
$tbl-attach($lblPassword,0,1,2,3);
$tbl-attach($txtPassword,1,2,2,3);
$b
您可能关注的文档
最近下载
- 2025年山东药品食品职业学院高职单招综合素质考试参考题库及答案解析.docx VIP
- (高清版)DB4409∕T 24-2021 《奇楠沉香扦插技术规程》.docx VIP
- 2026年广东中考生物命题趋势预测试卷(附答案解析).docx VIP
- 北京市2025年高考:《英语》考试真题(含答案).pdf VIP
- 世界金融史:泡沫、战争与股票市场([日]板谷敏彦 著).pdf VIP
- 2025年北京央教湘岳假期寒假作业七年级英语人教版答案.pdf VIP
- 明月海藻实习素材.doc VIP
- 死因监测工作例会的制度.doc VIP
- 《墙面石材干挂(背栓式)施工工艺》.docx VIP
- 老年人营养不良的评估(老年人能力评估课件).ppt
原创力文档

文档评论(0)