To use the app drag map files onto the form and they will be resigned, or open a file and hit resign

Code: Select all
private void Main_DragEnter(object sender, DragEventArgs e)
{
//Set Effects, Dunno What This Does Really =P, But It Makes It Work XD
if (e.Data.GetDataPresent(DataFormats.FileDrop))
e.Effect = DragDropEffects.All;
else
e.Effect = DragDropEffects.None;
}