VB可以制作一个像记事本一样的状态栏吗?
我使用 vb 2008 制作了一个记事本,我面临着一个问题,我将制作状态栏。
任何想法都会很棒。
注意:我正在使用文本框读取和写入文本
谢谢
I made a notepad using vb 2008 and I am facing a problem who I'd make the Statusbar.
any idea will be great.
Note: I am using the Textbox to read and write text
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要向表单中添加一个
StatusStrip
控件。要找到它,请打开工具箱,展开“菜单和工具栏”部分,然后双击该控件名为“StatusStrip”。
双击工具箱中的控件会自动将其添加到窗体中,并将其停靠在底部,就像在记事本中一样。
控件出现后,您可以通过更改“属性”窗口中的属性来自定义它。如果您想向状态栏添加信息,可以通过在其中添加子控件来实现。单击“新建”图标旁边的下拉箭头,您将看到可能的选项列表:
You need to add a
StatusStrip
control to your form.To find it, open the Toolbox, expand the "Menus & Toolbars" section, and double-click on the one named "StatusStrip".
Double-clicking on the control in the Toolbox will automatically add it to your form, and dock it along the bottom, just like it is in Notepad.
Once the control is there, you can customize it by changing properties in the Properties window. If you want to add information to the status bar, you do that by adding sub-controls inside of it. Click the drop-down arrow next to the "new" icon, and you'll see a list of possible choices: