Skip to content

Commit

Permalink
Added unused Funkeys and custom Funkey ID input.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lako authored and Lako committed Jul 12, 2019
1 parent 55de6e0 commit bbb514e
Show file tree
Hide file tree
Showing 28 changed files with 36,035 additions and 3,886 deletions.
Binary file added FunkeySelector/187.ico
Binary file not shown.
79 changes: 65 additions & 14 deletions FunkeySelector/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions FunkeySelector/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,21 @@ private void button11_Click(object sender, EventArgs e)
}
Process.GetProcessesByName("UBFunkeys")[0].CloseMainWindow();
}

private void Button13_Click(object sender, EventArgs e)
{
Form12 unused = new Form12();
this.Hide();
unused.Show();
}

private void Button14_Click(object sender, EventArgs e)
{
using (StreamWriter writetext = new StreamWriter("customF.txt"))
{
writetext.Write("funkeyCodeNum=" + textBox1.Text);
}
Process.GetProcessesByName("UBFunkeys")[0].CloseMainWindow();
}
}
}
Loading

0 comments on commit bbb514e

Please sign in to comment.