创建 MFC 对话框成员后如何修改它?

发布于 2024-09-17 07:27:03 字数 286 浏览 25 评论 0原文

我使用向导创建了一个带有 OKCancel 的 baisc 输入框,

我将输入框类型设置为“int”,最小值为 0,最大值为 99。

现在我想编辑输入框,使其类型为字符串。

我打开了 MFC 类向导,可以看到输入框的 ControlID、类型和成员 ID。但是,没有选项可以对其进行编辑...

我怎样才能通过向导执行此操作而不弄乱生成良好的代码?

谢谢!

Visual Studio 6.0 - C++

I used the Wizard to create a baisc input box with a OK and Cancel

I made the input box type "int" with min value 0 and max 99.

Now I want to edit the input box so that it is type string.

I have the MFC ClassWizard open and can see the ControlID, Type, and Member ID of the input box. However, there is no option to edit it...

How can I do this through the Wizard and not mess up the nicely generated code?

Thanks!

Visual Studio 6.0 - C++

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

眼睛会笑 2024-09-24 07:27:04

最简单的方法可能是删除当前与控件关联的变量(使用 ClassWizard,并手动删除函数实现),然后创建一个新的 CString 类型变量与之关联。请注意,无论好坏,您都无法将字符串限制在数字范围内 - 您只能限制其长度。

The easiest way is probably to delete the variable that's currently associated with the control (using the ClassWizard, and deleting the function implementation by hand) and then creating a new variable to associate with it of type CString. Note that, for better or worse, you will not be able to limit the string to a numeric range -- you can only limit its length.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文