• 大小: 1.96KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: C#  

资源简介

C# InputBox控件源码

资源截图

代码片段和文件信息

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;

namespace WindowsApplication1
{

#region InputBox return result

/// 
/// Class used to store the result of an InputBox.Show message.
/// 

public class InputBoxResult 
{
public DialogResult ReturnCode;
public string Text;
}

#endregion

/// 
/// Summary description for InputBox.
/// 

public class InputBox
{

#region Private Windows Contols and Constructor

// Create a new instance of the form.
private static Form frmInputDialog;
private static Label lblPrompt;
private static Button btnOK;
private static Button btnCancel;
private static TextBox txtInput;

public Inpu

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        7483  2005-04-21 16:03  InputBox.cs

评论

共有 条评论