Initial commit
This commit is contained in:
17
Apollon.WPF/Views/Components/ApollonOverViewListing.xaml
Normal file
17
Apollon.WPF/Views/Components/ApollonOverViewListing.xaml
Normal file
@@ -0,0 +1,17 @@
|
||||
<UserControl x:Class="Apollon.WPF.Views.Components.ApollonOverViewListing"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:Apollon.WPF.Views.Components"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="450" d:DesignWidth="800">
|
||||
<Grid>
|
||||
<Border BorderBrush="#0000a0"
|
||||
BorderThickness="1"
|
||||
CornerRadius="10"
|
||||
Width="300">
|
||||
</Border>
|
||||
<ListView Background="Transparent"/>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
28
Apollon.WPF/Views/Components/ApollonOverViewListing.xaml.cs
Normal file
28
Apollon.WPF/Views/Components/ApollonOverViewListing.xaml.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace Apollon.WPF.Views.Components
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for ApollonOverViewListing.xaml
|
||||
/// </summary>
|
||||
public partial class ApollonOverViewListing : UserControl
|
||||
{
|
||||
public ApollonOverViewListing()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
38
Apollon.WPF/Views/Components/ApollonOverviewDetails.xaml
Normal file
38
Apollon.WPF/Views/Components/ApollonOverviewDetails.xaml
Normal file
@@ -0,0 +1,38 @@
|
||||
<UserControl x:Class="Apollon.WPF.Views.Components.ApollonOverviewDetails"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:Apollon.WPF.Views.Components"
|
||||
mc:Ignorable="d"
|
||||
d:DesignHeight="450" d:DesignWidth="800">
|
||||
<Grid>
|
||||
<Border BorderBrush="#0000a0"
|
||||
BorderThickness="1"
|
||||
CornerRadius="10">
|
||||
</Border>
|
||||
<StackPanel>
|
||||
<TextBlock Text="Tuniername"
|
||||
TextAlignment="Center"
|
||||
FontFamily="Arial"
|
||||
FontWeight="Bold"
|
||||
FontSize="14"
|
||||
Foreground="#0000a0"
|
||||
Margin="40"/>
|
||||
<TextBlock Text="Vom 01.01.2022 bis 03.01.2022"
|
||||
TextAlignment="Center"
|
||||
FontFamily="Arial"
|
||||
FontWeight="Bold"
|
||||
FontSize="14"
|
||||
Foreground="#0000a0"
|
||||
Margin="0,0,0,40"/>
|
||||
<TextBlock Text="Veranstaltungsort"
|
||||
TextAlignment="Center"
|
||||
FontFamily="Arial"
|
||||
FontWeight="Bold"
|
||||
FontSize="14"
|
||||
Foreground="#0000a0"
|
||||
Margin="0,0,0,40"/>
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</UserControl>
|
||||
28
Apollon.WPF/Views/Components/ApollonOverviewDetails.xaml.cs
Normal file
28
Apollon.WPF/Views/Components/ApollonOverviewDetails.xaml.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
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.Navigation;
|
||||
using System.Windows.Shapes;
|
||||
|
||||
namespace Apollon.WPF.Views.Components
|
||||
{
|
||||
/// <summary>
|
||||
/// Interaction logic for ApollonOverviewDetails.xaml
|
||||
/// </summary>
|
||||
public partial class ApollonOverviewDetails : UserControl
|
||||
{
|
||||
public ApollonOverviewDetails()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user