Simple Input Window
SIW allows you easily create a window if you need some input from user
You can create an infinite number of textfields for your needs
Step 1
Create a window using this command:
InputWindow iw = new InputWindow(new InputItem("Column Name"));
InputItem class represents TextBox and Hint (Label) above it
Step 2
Show this window: if (iw.ShowDialog() == true)...
ShowDialog returns true only if user filled all inputs and pressed "Confirm" button
If some textboxes wasn't filled it throws an ArgumentException
Step 3
Get inputs as string array:
var strings = iw.GetInputs()
Step 4
Congratulatuons! You're amazing!