Skip to content

Commit

Permalink
Finalização do Projeto
Browse files Browse the repository at this point in the history
Finalizacao do projeto, com realease
  • Loading branch information
beritcarvalho committed Apr 30, 2021
1 parent c3d6dc8 commit c24040a
Show file tree
Hide file tree
Showing 122 changed files with 6,600 additions and 0 deletions.
Binary file added blackjack2.0/.vs/blackjack2.0/v16/.suo
Binary file not shown.
25 changes: 25 additions & 0 deletions blackjack2.0/blackjack2.0.sln
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 added blackjack2.0/blackjack2.0/11-copas.ico
Binary file not shown.
6 changes: 6 additions & 0 deletions blackjack2.0/blackjack2.0/App.config
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>
103 changes: 103 additions & 0 deletions blackjack2.0/blackjack2.0/Form1.Designer.cs

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

35 changes: 35 additions & 0 deletions blackjack2.0/blackjack2.0/Form1.cs
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());
}
}
}
Loading

0 comments on commit c24040a

Please sign in to comment.