Prompt Dialog in Windows Forms

前端 未结 11 1422
名媛妹妹
名媛妹妹 2020-11-30 19:47

I am using System.Windows.Forms but strangely enough don\'t have the ability to create them.

How can I get something like a javascript prompt dialog, wi

11条回答
  •  一生所求
    2020-11-30 20:07

    There is no such thing natively in Windows Forms.

    You have to create your own form for that or:

    use the Microsoft.VisualBasic reference.

    Inputbox is legacy code brought into .Net for VB6 compatibility - so i advise to not do this.

提交回复
热议问题