-
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.
Showing
122 changed files
with
6,600 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 16 | ||
VisualStudioVersion = 16.0.31112.23 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "blackjack2.0", "blackjack2.0\blackjack2.0.csproj", "{C3FDF339-8F4D-4E41-91FC-FFF472F8EBD3}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{C3FDF339-8F4D-4E41-91FC-FFF472F8EBD3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{C3FDF339-8F4D-4E41-91FC-FFF472F8EBD3}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{C3FDF339-8F4D-4E41-91FC-FFF472F8EBD3}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{C3FDF339-8F4D-4E41-91FC-FFF472F8EBD3}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {8D495BD9-851A-4BB5-A189-F986D075BF79} | ||
EndGlobalSection | ||
EndGlobal |
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> | ||
</startup> | ||
</configuration> |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.ComponentModel; | ||
using System.Data; | ||
using System.Drawing; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using System.Windows.Forms; | ||
using System.Threading; | ||
|
||
namespace blackjack2._0 | ||
{ | ||
public partial class Form1 : Form | ||
{ | ||
Thread varThread; | ||
public Form1() | ||
{ | ||
InitializeComponent(); | ||
} | ||
|
||
private void btnJogar_Click(object sender, EventArgs e) | ||
{ | ||
this.Close(); | ||
varThread = new Thread(novoForm); | ||
varThread.SetApartmentState(ApartmentState.STA); | ||
varThread.Start(); | ||
} | ||
|
||
private void novoForm() | ||
{ | ||
Application.Run(new Form2()); | ||
} | ||
} | ||
} |
Oops, something went wrong.