This little app shows how to implement drag and drop functionality into your programs.
To use the app drag map files onto the form and they will be resigned, or open a file and hit resign
Drag n Drop Resigner Source Code
Drag n Drop Resigner Source Code
- Attachments
-
- Drag n Drop Resigner.zip
- (34.95 KiB) Downloaded 35 times
Halo 2 Plugins | Lock-on To Just About Anything | My Sites | Snow Hog
Old Plugins you have, upgrade you must...
Always Maintain a High Quality-To-Crap Ratio.
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;
}
Anyway nice project, 'tis informative.
Halo 2 Prophet - Skin with ease with the simple 3D point and click interface.
Halo 3 Research Thread - Contribute to the research into Halo 3.
Halo 3 Research Thread - Contribute to the research into Halo 3.