Projekt erstellt

This commit is contained in:
NoKnownName 2025-08-27 10:34:08 +02:00
commit 62ab51894a
55 changed files with 2174 additions and 0 deletions

View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35222.181
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PenAndPaperFinal_Final", "PenAndPaperFinal_Final\PenAndPaperFinal_Final.csproj", "{6D305D30-4A09-4678-B2E5-E0CFB787D818}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{6D305D30-4A09-4678-B2E5-E0CFB787D818}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6D305D30-4A09-4678-B2E5-E0CFB787D818}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6D305D30-4A09-4678-B2E5-E0CFB787D818}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6D305D30-4A09-4678-B2E5-E0CFB787D818}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6D9D914A-AD3A-4BD3-AAB4-D4BCC60193A7}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,27 @@
<Window x:Class="PenAndPaperFinal_Final.Anmeldung"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="Anmeldung" Height="450" Width="800">
<Grid Background="LightBlue">
<Border Width="350" Padding="20" Background="White" CornerRadius="10"
VerticalAlignment="Center" HorizontalAlignment="Center" >
<StackPanel >
<TextBlock Text="Anmeldung" FontSize="24" FontWeight="Bold"
HorizontalAlignment="Center" />
<TextBox Margin="10" Height="35" Foreground="Gray" HorizontalContentAlignment="Center" VerticalContentAlignment="Center">Benutzername</TextBox>
<PasswordBox Margin="10" x:Name="PasswortBox" Height="35" HorizontalContentAlignment="Center" VerticalContentAlignment="Center"></PasswordBox>
<Button Content="Anmelden"
Height="40" Background="#3B82F6" Foreground="White"/>
</StackPanel>
</Border>
</Grid>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für Anmeldung.xaml
/// </summary>
public partial class Anmeldung : Window
{
public Anmeldung()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,9 @@
<Application x:Class="PenAndPaperFinal_Final.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:PenAndPaperFinal_Final"
StartupUri="MainWindow.xaml">
<Application.Resources>
</Application.Resources>
</Application>

View File

@ -0,0 +1,14 @@
using System.Configuration;
using System.Data;
using System.Windows;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
}
}

View File

@ -0,0 +1,10 @@
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)
)]

View File

@ -0,0 +1,36 @@
<Window x:Class="PenAndPaperFinal_Final.Charakter"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="Charakter" Height="450" Width="800">
<Grid Margin="20">
<StackPanel>
<TextBlock Text="🧝 Charakterbogen" FontSize="22" FontWeight="Bold" Margin="0,0,0,20"/>
<TextBlock Text="Name:"/>
<TextBox Text="{Binding Name}" Margin="0,5,0,10"/>
<TextBlock Text="Klasse:"/>
<ComboBox SelectedItem="{Binding Klasse}" Margin="0,5,0,10">
<ComboBoxItem>Magier</ComboBoxItem>
<ComboBoxItem>Krieger</ComboBoxItem>
<ComboBoxItem>Schurke</ComboBoxItem>
<ComboBoxItem>Kleriker</ComboBoxItem>
</ComboBox>
<TextBlock Text="HP:"/>
<TextBox Text="{Binding HP}" Margin="0,5,0,10"/>
<TextBlock Text="Inventar:"/>
<TextBox Text="{Binding Inventar}" AcceptsReturn="True" Height="60" TextWrapping="Wrap" Margin="0,5,0,10"/>
<TextBlock Text="Notizen:"/>
<TextBox Text="{Binding Notizen}" AcceptsReturn="True" Height="75" TextWrapping="Wrap" Margin="0,5,0,20"/>
<Button Content="💾 Speichern" Width="150" HorizontalAlignment="Center" Command="{Binding SpeichernCommand}" />
</StackPanel>
</Grid>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für Charakter.xaml
/// </summary>
public partial class Charakter : Window
{
public Charakter()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,42 @@
<Window x:Class="PenAndPaperFinal_Final.Einstellungen"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="Einstellungen" Height="450" Width="800">
<DockPanel Background="LightBlue">
<TextBlock DockPanel.Dock="Top" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="35" FontWeight="Bold">Einstellungen</TextBlock>
<Border Width="Auto" Padding="20" Height="Auto" Background="White" CornerRadius="10"
VerticalAlignment="Center" HorizontalAlignment="Center" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" FontSize="15" HorizontalAlignment="Center"
VerticalAlignment="Center" FontWeight="Bold">ProfilBild auswählen :</TextBlock>
<TextBox Grid.Row="0" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" Width="100" Height="50" Margin="15"></TextBox>
<TextBlock Grid.Row="1" Grid.Column="0" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" FontWeight="Bold">Benutzername :</TextBlock>
<TextBox Grid.Row="1" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" Width="100" Height="50" Margin="15"></TextBox>
<TextBlock Grid.Row="2" Grid.Column="0" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="15" FontWeight="Bold">Sprache :</TextBlock>
<ScrollBar Grid.Row="2" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="10"></ScrollBar>
</Grid>
</Border>
</DockPanel>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für Einstellungen.xaml
/// </summary>
public partial class Einstellungen : Window
{
public Einstellungen()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,50 @@
<Window x:Class="PenAndPaperFinal_Final.Kampagne"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="Kampagne" Height="450" Width="800">
<DockPanel Background="LightBlue">
<TextBlock DockPanel.Dock="Top" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="35" FontWeight="Bold">Kampagnen</TextBlock>
<Border Width="Auto" Padding="20" Height="Auto" Background="White" CornerRadius="10"
VerticalAlignment="Center" HorizontalAlignment="Center" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" FontSize="15" HorizontalAlignment="Center"
VerticalAlignment="Center" FontWeight="Bold" Margin="15">Titel :</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1" FontSize="15" HorizontalAlignment="Center" Foreground="LightGray"
VerticalAlignment="Center" Margin="15">BlaBlaBla</TextBlock>
<TextBlock Grid.Row="1" Grid.Column="0" FontSize="15" HorizontalAlignment="Center"
VerticalAlignment="Center" FontWeight="Bold" Margin="15">Beschreibung :</TextBlock>
<Button Grid.Row="2" Grid.Column="0" FontSize="15" HorizontalAlignment="Center"
VerticalAlignment="Center" Width="100" Margin="15">Bearbeiten</Button>
<TextBlock Grid.Row="1" FontSize="15" Grid.Column="1" HorizontalAlignment="Center" Foreground="LightGray"
VerticalAlignment="Center" >BlaBlaBla</TextBlock>
<Button Grid.Row="2" Grid.Column="1" FontSize="15" HorizontalAlignment="Center"
VerticalAlignment="Center" Width="100" Margin="15">Löschen</Button>
</Grid>
</Border>
</DockPanel>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für Kampagne.xaml
/// </summary>
public partial class Kampagne : Window
{
public Kampagne()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,80 @@
<Window x:Class="PenAndPaperFinal_Final.KampagnenDetails"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="KampagnenDetails" Height="450" Width="800">
<Grid Background="LightBlue">
<StackPanel Margin="10">
<TextBlock Text="📂 Kampagne: "
FontSize="20"
FontWeight="Bold"
Margin="0,0,0,10" />
<TabControl>
<TabItem Header="📝 Allgemein">
<StackPanel Margin="10" Height="300">
<TextBlock Text="Titel:" />
<TextBox Text="PlatzHalter" Foreground="LightGray" Margin="0,5,0,10" Height="50" />
<TextBlock Text="Beschreibung:" />
<TextBox Text="PlatzHalter" Foreground="LightGray"
AcceptsReturn="True"
Height="100" Margin="0,5,0,10" />
<Button Content="💾 Speichern" Width="150" HorizontalAlignment="Left" />
</StackPanel>
</TabItem>
<TabItem Header="🗺️ Karten">
<StackPanel Margin="10" Height="100">
<ItemsControl>
<ItemsControl.ItemTemplate>
<DataTemplate>
<DockPanel Margin="0,5">
<TextBlock DockPanel.Dock="Left" />
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
<Button Content="🔍 Ansehen" Margin="5,0"/>
<Button Content="🗑️ Entfernen" Margin="5,0"/>
</StackPanel>
</DockPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
<Button Content=" Neue Karte hinzufügen" Margin="0,10,0,0" Width="200"/>
</StackPanel>
</TabItem>
<TabItem Header="🧙 Charaktere">
<StackPanel Margin="10" Height="100">
<ItemsControl>
<ItemsControl.ItemTemplate>
<DataTemplate>
<DockPanel Margin="0,5">
<TextBlock DockPanel.Dock="Left" />
<Button Content="🗑️ Entfernen" HorizontalAlignment="Right"/>
</DockPanel>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
<Button Content=" Charakter zuweisen" Margin="0,10,0,0" Width="200"/>
</StackPanel>
</TabItem>
<TabItem Header="📚 Notizen">
<StackPanel Margin="10">
<TextBox Text="Notizen" Foreground="LightGray"
AcceptsReturn="True"
Height="200"
TextWrapping="Wrap" />
<Button Content="💾 Notizen speichern" Margin="0,10,0,0" Width="200"/>
</StackPanel>
</TabItem>
</TabControl>
</StackPanel>
</Grid>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für KampagnenDetails.xaml
/// </summary>
public partial class KampagnenDetails : Window
{
public KampagnenDetails()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,25 @@
<Window x:Class="PenAndPaperFinal_Final.Karte"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="Karte" Height="450" Width="800">
<DockPanel>
<!-- Toolbar oben -->
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" Background="#f0f0f0">
<Button Content=" Neue Zone" Margin="5"/>
<Button Content="🎯 Token platzieren" Margin="5"/>
<Button Content="💾 Speichern" Margin="5"/>
<Button Content="🔙 Zurück" Margin="5"/>
</StackPanel>
<!-- Kartenfläche -->
<Border BorderBrush="Gray" BorderThickness="1" Background="LightGray" Margin="10">
<Canvas x:Name="KartenCanvas" Background="White">
<!-- Token-/Zone-Elemente würden hier als UIElemente gezeichnet -->
</Canvas>
</Border>
</DockPanel>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für Karte.xaml
/// </summary>
public partial class Karte : Window
{
public Karte()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,71 @@
<Window x:Class="PenAndPaperFinal_Final.Lobby"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="Lobby" Height="450" Width="800">
<DockPanel Background="LightBlue" LastChildFill="True">
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" HorizontalAlignment="Center" Margin="0,10">
<TextBox Text="SitzungsTitel:"
FontSize="20"
Width="200"
FontWeight="Bold"
Foreground="Gray"
Background="White"
Margin="10"
HorizontalContentAlignment="Center" />
<TextBox Text="BenutzerName:"
FontSize="20"
Width="200"
FontWeight="Bold"
Foreground="Gray"
Background="White"
Margin="10"
HorizontalContentAlignment="Center" />
</StackPanel>
<Border Width="Auto" Padding="20" Background="White" CornerRadius="10"
VerticalAlignment="Center" HorizontalAlignment="Center" Margin="0,20">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Button Grid.Row="0" Grid.Column="0" Content="Karte"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="0" Grid.Column="1" Content="Kampagne"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="1" Grid.Column="0" Content="Chat"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="1" Grid.Column="1" Content="Charakter"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="2" Grid.Column="0" Content="Einstellungen"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="2" Grid.Column="1" Content="Würfeln"
FontSize="15" FontWeight="Bold" Width="120" Height="40" Margin="10" />
<Button Grid.Row="3" Grid.ColumnSpan="2" Content="🚪 Sitzung Verlassen"
FontSize="15" FontWeight="Bold" Width="250" Height="35" Margin="10"
HorizontalAlignment="Center" />
</Grid>
</Border>
</DockPanel>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für Lobby.xaml
/// </summary>
public partial class Lobby : Window
{
public Lobby()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,44 @@
<Window x:Class="PenAndPaperFinal_Final.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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid Background="LightBlue">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<TextBlock Text="Pen and Paper Manager"
FontSize="28"
FontWeight="Bold"
Foreground="#333"
Margin="0,30,0,10"
HorizontalAlignment="Center" />
<StackPanel Grid.Row="1" VerticalAlignment="Center" HorizontalAlignment="Center" Width="300" >
<TextBlock Text="Willkommen bei Pen and Paper!" FontSize="20" FontWeight="SemiBold" TextAlignment="Center"/>
<Button Content="Anmelden"
Height="40" Margin="10"/>
<Button Content="Registrieren"
Height="40" Margin="10"/>
<Button Content="Als Gast fortfahren"
Height="35" Margin="10"
Foreground="Gray"/>
</StackPanel>
<TextBlock Grid.Row="2" Text="v1.0.0"
FontSize="15"
Foreground="Gray"
HorizontalAlignment="Center"
Margin="0,10,0,10"/>
</Grid>
</Window>

View File

@ -0,0 +1,24 @@
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<ItemGroup>
<ApplicationDefinition Update="App.xaml">
<SubType>Designer</SubType>
</ApplicationDefinition>
</ItemGroup>
<ItemGroup>
<Compile Update="Anmeldung.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Charakter.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Einstellungen.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Kampagne.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="KampagnenDetails.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Karte.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Lobby.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Registrieren.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Sitzung.xaml.cs">
<SubType>Code</SubType>
</Compile>
<Compile Update="Würfel.xaml.cs">
<SubType>Code</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Page Update="Anmeldung.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Charakter.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Einstellungen.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Kampagne.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="KampagnenDetails.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Karte.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Lobby.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="MainWindow.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Registrieren.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Sitzung.xaml">
<SubType>Designer</SubType>
</Page>
<Page Update="Würfel.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>

View File

@ -0,0 +1,29 @@
<Window x:Class="PenAndPaperFinal_Final.Registrieren"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="Registrieren" Height="450" Width="800">
<Grid Background="LightBlue">
<Border Width="350" Padding="20" Background="White" CornerRadius="10"
VerticalAlignment="Center" HorizontalAlignment="Center" >
<StackPanel >
<TextBlock Text="Neues Konto Anlegen" FontSize="24" FontWeight="Bold"
HorizontalAlignment="Center" />
<TextBox Height="35" Margin="10" Foreground="Gray" HorizontalContentAlignment="Center" VerticalContentAlignment="Center">Benutzername eingeben</TextBox>
<TextBox x:Name="PasswortBox" Margin="10" Height="35" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Foreground="Gray">Passwort eingeben</TextBox>
<TextBox Height="35" Margin="10 " HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Foreground="Gray">Passwort bestätigen</TextBox>
<Button Content="Jetzt Starten"
Height="40" Background="#3B82F6" Foreground="White"/>
</StackPanel>
</Border>
</Grid>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für Registrieren.xaml
/// </summary>
public partial class Registrieren : Window
{
public Registrieren()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,50 @@
<Window x:Class="PenAndPaperFinal_Final.Sitzung"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="Sitzung" Height="450" Width="800">
<DockPanel Background="LightBlue">
<TextBlock DockPanel.Dock="Top" HorizontalAlignment="Center" VerticalAlignment="Center" FontSize="35" FontWeight="Bold">Sitzungen</TextBlock>
<Border Width="Auto" Padding="20" Height="Auto" Background="White" CornerRadius="10"
VerticalAlignment="Center" HorizontalAlignment="Center" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
<RowDefinition></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition></ColumnDefinition>
<ColumnDefinition></ColumnDefinition>
</Grid.ColumnDefinitions>
<TextBlock Grid.Row="0" Grid.Column="0" FontSize="15" HorizontalAlignment="Center"
VerticalAlignment="Center" FontWeight="Bold" Margin="15">Sitzung erstellen</TextBlock>
<TextBlock Grid.Row="0" Grid.Column="1" FontSize="15" HorizontalAlignment="Center"
VerticalAlignment="Center" FontWeight="Bold" Margin="15">Sitzung beitreten</TextBlock>
<TextBox Grid.Row="1" Grid.Column="0" FontSize="15" HorizontalAlignment="Center" Foreground="LightGray"
VerticalAlignment="Center" Margin="10">Titel eingeben</TextBox>
<Button Grid.Row="2" Grid.Column="0" FontSize="15" HorizontalAlignment="Center"
VerticalAlignment="Center" Margin="15">Sitzung erstellen</Button>
<TextBox Grid.Row="1" Grid.Column="1" HorizontalAlignment="Center" Foreground="LightGray"
VerticalAlignment="Center" >Code eingeben</TextBox>
<Button Grid.Row="2" Grid.Column="1" FontSize="15" HorizontalAlignment="Center"
VerticalAlignment="Center" Margin="15">Sitzung beitreten</Button>
</Grid>
</Border>
</DockPanel>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für Sitzung.xaml
/// </summary>
public partial class Sitzung : Window
{
public Sitzung()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,58 @@
<Window x:Class="PenAndPaperFinal_Final.Würfel"
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:PenAndPaperFinal_Final"
mc:Ignorable="d"
Title="Würfel" Height="450" Width="800">
<Grid Background="LightBlue">
<Border Width="Auto" Padding="20" Height="Auto" Background="White" CornerRadius="10"
VerticalAlignment="Center" HorizontalAlignment="Center" >
<StackPanel HorizontalAlignment="Center" Margin="20">
<TextBlock Text="🎲 Würfel"
FontSize="22"
FontWeight="Bold"
Margin="0,0,0,20"
HorizontalAlignment="Center" />
<StackPanel Orientation="Horizontal" Margin="0,0,0,10">
<TextBlock Text="Würfeltyp:" Width="80" VerticalAlignment="Center"/>
<ComboBox Width="120">
<ComboBoxItem>D4</ComboBoxItem>
<ComboBoxItem>D6</ComboBoxItem>
<ComboBoxItem>D8</ComboBoxItem>
<ComboBoxItem>D10</ComboBoxItem>
<ComboBoxItem>D12</ComboBoxItem>
<ComboBoxItem>D20</ComboBoxItem>
<ComboBoxItem>D100</ComboBoxItem>
</ComboBox>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0,0,0,20">
<TextBlock Text="Anzahl:" Width="80" VerticalAlignment="Center"/>
<TextBox Width="120" Text="PlatzHalter" Foreground="LightGray" />
</StackPanel>
<Button Content="🎲 Würfeln"
Width="150"
Margin="0,0,0,20"
HorizontalAlignment="Center" />
<TextBlock Text="📜 Ergebnisse:"
FontWeight="SemiBold"
Margin="0,0,0,5"/>
<ListBox
Height="100"
Margin="0,0,0,10"/>
</StackPanel>
</Border>
</Grid>
</Window>

View File

@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Interaktionslogik für Würfel.xaml
/// </summary>
public partial class Würfel : Window
{
public Würfel()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]

View File

@ -0,0 +1,90 @@
#pragma checksum "..\..\..\Anmeldung.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "07787A4C0742659B4D6DA86585C537D56A5A10E4"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// Anmeldung
/// </summary>
public partial class Anmeldung : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 19 "..\..\..\Anmeldung.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.PasswordBox PasswortBox;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/anmeldung.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Anmeldung.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.PasswortBox = ((System.Windows.Controls.PasswordBox)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,71 @@
#pragma checksum "..\..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BA97FBAF0D13F5343419D8D52532EC0C52ECC1FF"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// App
/// </summary>
public partial class App : System.Windows.Application {
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
#line 5 "..\..\..\App.xaml"
this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
#line default
#line hidden
}
/// <summary>
/// Application Entry Point.
/// </summary>
[System.STAThreadAttribute()]
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public static void Main() {
PenAndPaperFinal_Final.App app = new PenAndPaperFinal_Final.App();
app.InitializeComponent();
app.Run();
}
}
}

View File

@ -0,0 +1,76 @@
#pragma checksum "..\..\..\Charakter.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3473FDFE5F8EBD41D771B7A29702DB1CEF7A7D2E"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// Charakter
/// </summary>
public partial class Charakter : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/charakter.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Charakter.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,76 @@
#pragma checksum "..\..\..\Einstellungen.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F3E471A2F57980E53D815E9C5A628BE465399806"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// Einstellungen
/// </summary>
public partial class Einstellungen : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/einstellungen.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Einstellungen.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,76 @@
#pragma checksum "..\..\..\Kampagne.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F1F59FAC5C346B8616421FF65DD318EC274BAF1D"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// Kampagne
/// </summary>
public partial class Kampagne : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/kampagne.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Kampagne.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,76 @@
#pragma checksum "..\..\..\KampagnenDetails.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "C024C5FB1E8324116D658391491D22882DBEABC0"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// KampagnenDetails
/// </summary>
public partial class KampagnenDetails : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/kampagnendetails.xaml", System.UriKind.Relative);
#line 1 "..\..\..\KampagnenDetails.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,90 @@
#pragma checksum "..\..\..\Karte.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "E5996BDC7FE193C35CAF8CF8E5C3E7F12F51DBBD"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// Karte
/// </summary>
public partial class Karte : System.Windows.Window, System.Windows.Markup.IComponentConnector {
#line 20 "..\..\..\Karte.xaml"
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
internal System.Windows.Controls.Canvas KartenCanvas;
#line default
#line hidden
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/karte.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Karte.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
switch (connectionId)
{
case 1:
this.KartenCanvas = ((System.Windows.Controls.Canvas)(target));
return;
}
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,76 @@
#pragma checksum "..\..\..\Lobby.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "948FE5CC303CB72C5EDFDA8E5E4D84F9C0BC65CC"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// Lobby
/// </summary>
public partial class Lobby : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/lobby.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Lobby.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,76 @@
#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "DC3FEACEC1C9F1259AC569D8C958C5927AB7A3A9"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/mainwindow.xaml", System.UriKind.Relative);
#line 1 "..\..\..\MainWindow.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,25 @@
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("PenAndPaperFinal_Final")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("PenAndPaperFinal_Final")]
[assembly: System.Reflection.AssemblyTitleAttribute("PenAndPaperFinal_Final")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// Von der MSBuild WriteCodeFragment-Klasse generiert.

View File

@ -0,0 +1 @@
5beafbac7af829fa9ffaf5a2cc46d123973845a0db4ff1fa1a39b39d0e70c3fc

View File

@ -0,0 +1,13 @@
is_global = true
build_property.TargetFramework = net8.0-windows
build_property.TargetPlatformMinVersion = 7.0
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = PenAndPaperFinal_Final
build_property.ProjectDir = C:\Users\bib\source\repos\PenAndPaperFinal_Final\PenAndPaperFinal_Final\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =

View File

@ -0,0 +1,6 @@
// <auto-generated/>
global using global::System;
global using global::System.Collections.Generic;
global using global::System.Linq;
global using global::System.Threading;
global using global::System.Threading.Tasks;

View File

@ -0,0 +1,11 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {}
},
"libraries": {}
}

View File

@ -0,0 +1,23 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "8.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\bib\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\bib\\.nuget\\packages"
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

View File

@ -0,0 +1,20 @@
PenAndPaperFinal_Final
1.0.0.0
winexe
C#
.cs
C:\Users\bib\source\repos\PenAndPaperFinal_Final\PenAndPaperFinal_Final\obj\Debug\net8.0-windows\
PenAndPaperFinal_Final
none
false
TRACE;DEBUG;NET;NET8_0;NETCOREAPP
C:\Users\bib\source\repos\PenAndPaperFinal_Final\PenAndPaperFinal_Final\App.xaml
11-971962897
16-1324980526
198-1431420039
Anmeldung.xaml;Charakter.xaml;Einstellungen.xaml;Kampagne.xaml;KampagnenDetails.xaml;Karte.xaml;Lobby.xaml;MainWindow.xaml;Registrieren.xaml;Sitzung.xaml;Würfel.xaml;
True

View File

@ -0,0 +1,5 @@

FC:\Users\bib\source\repos\PenAndPaperFinal_Final\PenAndPaperFinal_Final\Einstellungen.xaml;;
FC:\Users\bib\source\repos\PenAndPaperFinal_Final\PenAndPaperFinal_Final\Registrieren.xaml;;

View File

@ -0,0 +1,84 @@
// Updated by XamlIntelliSenseFileGenerator 27.08.2025 10:14:23
#pragma checksum "..\..\..\Registrieren.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "F1E4E93C972C0465BAB157EF1297134BAB0277B5"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final
{
/// <summary>
/// Registrieren
/// </summary>
public partial class Registrieren : System.Windows.Window, System.Windows.Markup.IComponentConnector
{
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent()
{
if (_contentLoaded)
{
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/registrieren.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Registrieren.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target)
{
this._contentLoaded = true;
}
internal System.Windows.Controls.TextBox PasswortBox;
}
}

View File

@ -0,0 +1,76 @@
#pragma checksum "..\..\..\Sitzung.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7A7888DEDF908981646719B9F26269BABE120DBB"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// Sitzung
/// </summary>
public partial class Sitzung : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/sitzung.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Sitzung.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,76 @@
#pragma checksum "..\..\..\Würfel.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BC41B6B0B7DAEC6B4CD8D5F33BBBF212DC2D5337"
//------------------------------------------------------------------------------
// <auto-generated>
// Dieser Code wurde von einem Tool generiert.
// Laufzeitversion:4.0.30319.42000
//
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
// der Code erneut generiert wird.
// </auto-generated>
//------------------------------------------------------------------------------
using PenAndPaperFinal_Final;
using System;
using System.Diagnostics;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Controls.Ribbon;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Effects;
using System.Windows.Media.Imaging;
using System.Windows.Media.Media3D;
using System.Windows.Media.TextFormatting;
using System.Windows.Navigation;
using System.Windows.Shapes;
using System.Windows.Shell;
namespace PenAndPaperFinal_Final {
/// <summary>
/// Würfel
/// </summary>
public partial class Würfel : System.Windows.Window, System.Windows.Markup.IComponentConnector {
private bool _contentLoaded;
/// <summary>
/// InitializeComponent
/// </summary>
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Uri resourceLocater = new System.Uri("/PenAndPaperFinal_Final;V1.0.0.0;component/w%c3%bcrfel.xaml", System.UriKind.Relative);
#line 1 "..\..\..\Würfel.xaml"
System.Windows.Application.LoadComponent(this, resourceLocater);
#line default
#line hidden
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "8.0.11.0")]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
this._contentLoaded = true;
}
}
}

View File

@ -0,0 +1,71 @@
{
"format": 1,
"restore": {
"C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj": {}
},
"projects": {
"C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
"projectName": "PenAndPaperFinal_Final",
"projectPath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
"outputPath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WPF": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\bib\.nuget\packages\</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.11.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\bib\.nuget\packages\" />
</ItemGroup>
</Project>

View File

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@ -0,0 +1,76 @@
{
"version": 3,
"targets": {
"net8.0-windows7.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net8.0-windows7.0": []
},
"packageFolders": {
"C:\\Users\\bib\\.nuget\\packages\\": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
"projectName": "PenAndPaperFinal_Final",
"projectPath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
"packagesPath": "C:\\Users\\bib\\.nuget\\packages\\",
"outputPath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\obj\\",
"projectStyle": "PackageReference",
"configFilePaths": [
"C:\\Users\\bib\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"C:\\Program Files\\dotnet\\library-packs": {}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WPF": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
}
}

View File

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "HlP9Zh5S6Cc=",
"success": true,
"projectFilePath": "C:\\Users\\bib\\source\\repos\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final\\PenAndPaperFinal_Final.csproj",
"expectedPackageFiles": [],
"logs": []
}