Commit 473739f3 authored by Bondi Matteo's avatar Bondi Matteo
Browse files

V0.4 finita versione base

parents
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.14.36212.18 d17.14
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "esercitazioneAsincrona", "esercitazioneAsincrona\esercitazioneAsincrona.csproj", "{F9FA5527-B33D-4D55-9A94-ACB25B52F98F}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Release|Any CPU = Release|Any CPU
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{F9FA5527-B33D-4D55-9A94-ACB25B52F98F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{F9FA5527-B33D-4D55-9A94-ACB25B52F98F}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{F9FA5527-B33D-4D55-9A94-ACB25B52F98F}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{F9FA5527-B33D-4D55-9A94-ACB25B52F98F}.Release|Any CPU.Build.0 = Release|Any CPU
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
	GlobalSection(ExtensibilityGlobals) = postSolution
		SolutionGuid = {8BBB273E-43EF-4C80-BD18-3700531D6DBF}
	EndGlobalSection
EndGlobal
+9 −0
Original line number Diff line number Diff line
<Application x:Class="esercitazioneAsincrona.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:local="clr-namespace:esercitazioneAsincrona"
             StartupUri="MainWindow.xaml">
    <Application.Resources>
         
    </Application.Resources>
</Application>
+14 −0
Original line number Diff line number Diff line
using System.Configuration;
using System.Data;
using System.Windows;

namespace esercitazioneAsincrona
{
    /// <summary>
    /// Interaction logic for App.xaml
    /// </summary>
    public partial class App : Application
    {
    }

}
+10 −0
Original line number Diff line number Diff line
using System.Windows;

[assembly: ThemeInfo(
    ResourceDictionaryLocation.None,            //where theme specific resource dictionaries are located
                                                //(used if a resource is not found in the page,
                                                // or application resource dictionaries)
    ResourceDictionaryLocation.SourceAssembly   //where the generic resource dictionary is located
                                                //(used if a resource is not found in the page,
                                                // app, or any theme specific resource dictionaries)
)]
+15 −0
Original line number Diff line number Diff line
<Window x:Class="esercitazioneAsincrona.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:local="clr-namespace:esercitazioneAsincrona"
        mc:Ignorable="d"
        Title="MainWindow" Height="450" Width="800">
    <Grid>
        <Button Content="Button" HorizontalAlignment="Left" Height="135" Margin="35,39,0,0" VerticalAlignment="Top" Width="278" Click="Button_Click"/>
        <Label Name="Lettera" Content="" HorizontalAlignment="Left" Height="142" Margin="71,217,0,0" VerticalAlignment="Top" Width="150" FontSize="70"/>
        <Label Name="Elenco" Content="" HorizontalAlignment="Left" Height="312" Margin="434,39,0,0" VerticalAlignment="Top" Width="292"/>

    </Grid>
</Window>