(string TipText, string Caption, string Default)
| 35 | } |
| 36 | |
| 37 | public Dialog_InputBox(string TipText, string Caption, string Default) |
| 38 | { |
| 39 | InitializeComponent(); |
| 40 | |
| 41 | _TipText = TipText; |
| 42 | _Caption = Caption; |
| 43 | _Default = Default; |
| 44 | } |
| 45 | |
| 46 | private void Dialog_InputBox_Load(object sender, EventArgs e) |
| 47 | { |
nothing calls this directly
no outgoing calls
no test coverage detected