Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 807 Bytes

1.md

File metadata and controls

22 lines (16 loc) · 807 Bytes

C# FN Launcher Tutorial

Part 1 - Making the form

  1. Create a C# WPF Project, name it whatever you like. I recommend using .NET Core 3.1.
  2. Add 3 TextBoxes and 2 Buttons.
  3. Put and name them in this order:
  • MailTextBox
  • PassTextBox
  • PathTextBox
  • PathBtn
  • LaunchBtn
  1. Delete the Text content from all TextBoxes.

  1. You can add labels on top of the TextBoxes, you don't have to add a name to them.

  2. Place everything where you want to, I recommend making it look like this:

  1. You're now done with the 1st part! Go here for the 2nd part.