本文介绍了禁用基于对话框的应用程序中的按钮。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨!



我有基于对话框的应用程序。



1.在设置拨号盘中有两个按钮。 1.配置和2.确定按钮。

2.如果我单击配置按钮,将打开配置对话框。

3.在配置对话框中有1.combo框和2.OK按钮。



如果组合框没有任何元素,我将禁用配置对话框的确定​​按钮。



同样我想在配置对话框的组合框中没有项目时禁用OK按钮设置对话框。



请帮我怎么做它?



谢谢

Sam。

Hi!

I have dialog based application.

1. In Settings Dialod there are two buttons. 1. Configure and 2. OK button.
2. If i click on Configure Button, Configure dialog will open.
3. In Configure Dialog there are 1.combo boxes and 2.OK button.

If combobox dont have any elements i''m disabling the OK button of Configure Dialog.

Similarly i wanna to disable OK Button of Settings dialog, when no items present in combo box of configure dialog.

Please help me how to do it ?

Thanks
Sam.

推荐答案


bool ConfigInfoComplete() const;



然后,在设置对话框的OnConfigureButton函数中,从Configure对话框返回后调用该函数,例如:


Then, in your OnConfigureButton function of the settings dialog, call that function after the return from the Configure dialog, for example:

void SettingsDlg::OnConfigureButton()
{
    ...
    ConfigureDlg dlg (this);
    dlg.RunModal();
    m_okButton.EnableWindow (dlg.ConfigInfoComplete());
}



请注意,在ConfigureDlg从RunModal返回后,dlg对象仍处于活动状态。您可以执行ConfigInfoComplete等成员函数或测试公共成员变量。这通常是将信息从模态对话框传递给调用者的方式。



我希望能让你前进。


Note that after the ConfigureDlg returns from RunModal, the dlg object is still alive. And you can execute member functions like ConfigInfoComplete or test public member variables. That is usually the way in which you pass information from a modal dialog to its caller.

I hope that gets you going.


这篇关于禁用基于对话框的应用程序中的按钮。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 21:42