-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
116 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
115 changes: 73 additions & 42 deletions
115
Kill It With Fire!/Kill It With Fire!/Prompt.Designer.vb
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,26 @@ | ||
Public Class Prompt | ||
|
||
Private Sub btn_yes_Click(sender As Object, e As EventArgs) Handles btn_yes.Click | ||
If chk_all.Checked = True Then | ||
promptResult = "YesAll" | ||
Else | ||
promptResult = "Yes" | ||
End If | ||
|
||
Me.Close() | ||
End Sub | ||
|
||
Private Sub btn_no_Click(sender As Object, e As EventArgs) Handles btn_no.Click | ||
If chk_all.Checked = True Then | ||
promptResult = "NoAll" | ||
Else | ||
promptResult = "No" | ||
End If | ||
|
||
Me.Close() | ||
End Sub | ||
|
||
Private Sub Prompt_Load(sender As Object, e As EventArgs) Handles MyBase.Load | ||
panel_buttons.Location = New Point((Me.Width - panel_buttons.Width) / 2, panel_buttons.Location.Y) | ||
End Sub | ||
End Class |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters