Questions tagged «messagebox»




4
如何使用“确定”按钮添加消息框?
我想显示一个带有“确定”按钮的消息框。我使用以下代码,但会导致带有参数的编译错误: AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this); dlgAlert.setMessage("This is an alert with no consequence"); dlgAlert.setTitle("App Title"); dlgAlert.setPositiveButton("OK", null); dlgAlert.setCancelable(true); dlgAlert.create().show(); 如何在Android中显示消息框?

12
几秒钟后关闭MessageBox
我有一个Windows Forms应用程序VS2010 C#,在其中显示用于显示消息的MessageBox。 我有一个好的按钮,但是如果他们走开,我想超时并在允许说5秒钟后关闭消息框,然后自动关闭消息框。 有自定义的MessageBox(从Form继承)或另一个报告程序Forms,但是有趣的是不必使用Form。 有任何建议或样品吗? 更新: 对于WPF, 在C#中自动关闭消息框 自定义MessageBox(使用表单继承) http://www.codeproject.com/Articles/17253/A-Custom-Message-Box http://www.codeproject.com/Articles/327212/Custom-Message-Box-in-VC http://tutplusplus.blogspot.com.es/2010/07/c-tutorial-create-your-own-custom.html http://medmondson2011.wordpress.com/2010/04/07/easy-to-use-custom-c-message-box-with-a-configurable-checkbox/ 可滚动 的消息框C#中的可滚动的消息框 异常报告器 /programming/49224/good-crash-reporting-library-in-c-sharp http://www.codeproject.com/Articles/6895/A-Reusable-Flexible-Error-Reporting-Framework 解: 也许我认为以下答案是很好的解决方案,无需使用表格。 https://stackoverflow.com/a/14522902/206730 https://stackoverflow.com/a/14522952/206730
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.