Skip to content

Commit 065d5f2

Browse files
committed
edit old model
1 parent 6e933cf commit 065d5f2

File tree

178 files changed

+1246
-4871
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+1246
-4871
lines changed
Binary file not shown.
16.5 KB
Binary file not shown.
Binary file not shown.

Pangolin Database-App/ClassDiagram1.cd

Lines changed: 648 additions & 0 deletions
Large diffs are not rendered by default.
181 KB
Loading

Pangolin Database-App/Pangolin Database-App.csproj

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,17 @@
4242
<Resource Include="Icons\pangolin.png" />
4343
</ItemGroup>
4444

45+
<ItemGroup>
46+
<Compile Update="User Controls\EditOldModelView.xaml.cs">
47+
<SubType>Code</SubType>
48+
</Compile>
49+
</ItemGroup>
50+
51+
<ItemGroup>
52+
<Page Update="User Controls\EditOldModelView.xaml">
53+
<XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime>
54+
<SubType>Designer</SubType>
55+
</Page>
56+
</ItemGroup>
57+
4558
</Project>

Pangolin Database-App/Pangolin Database-App.csproj.user

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@
8181
<Page Update="User Controls\Login\SetupView.xaml">
8282
<SubType>Designer</SubType>
8383
</Page>
84+
<Page Update="User Controls\EditOldModelView.xaml">
85+
<SubType>Designer</SubType>
86+
</Page>
8487
<Page Update="User Controls\Messagebox.xaml">
8588
<SubType>Designer</SubType>
8689
</Page>

Pangolin Database-App/Pangolin Database-App.xml

Lines changed: 26 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!-- BACKLOG -->
2+
<UserControl
3+
x:Class="Pangolin_Database_App.User_Controls.EditOldModelView"
4+
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
5+
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
6+
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
7+
xmlns:local="clr-namespace:Pangolin_Database_App.User_Controls"
8+
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
9+
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
10+
d:DesignHeight="450"
11+
d:DesignWidth="800"
12+
mc:Ignorable="d">
13+
<Grid>
14+
<Grid.RowDefinitions>
15+
<RowDefinition Height="50" />
16+
<RowDefinition Height="1*" />
17+
<RowDefinition Height="50" />
18+
<RowDefinition Height="1*" />
19+
<RowDefinition Height="100" />
20+
</Grid.RowDefinitions>
21+
<TextBlock
22+
Grid.Row="0"
23+
HorizontalAlignment="Center"
24+
VerticalAlignment="Center"
25+
FontFamily="Roboto"
26+
FontSize="30"
27+
FontWeight="Bold"
28+
Text="Select Pangolin:" />
29+
<ComboBox
30+
Grid.Row="1"
31+
Margin="20,0,20,0"
32+
materialDesign:HintAssist.Hint="Select a pangolin"
33+
DisplayMemberPath="ReferenceNumber"
34+
FontFamily="Roboto"
35+
FontSize="30"
36+
ItemsSource="{Binding Pangolins}"
37+
SelectedItem="{Binding Pangolin}"
38+
Style="{StaticResource MaterialDesignFloatingHintComboBox}" />
39+
<TextBlock
40+
Grid.Row="2"
41+
HorizontalAlignment="Center"
42+
FontFamily="Roboto"
43+
FontSize="27"
44+
Text="{Binding InfoText}"
45+
TextWrapping="Wrap" />
46+
<Button
47+
Grid.Row="3"
48+
HorizontalAlignment="Stretch"
49+
Command="materialDesign:DialogHost.CloseDialogCommand"
50+
Cursor="Hand"
51+
IsCancel="True"
52+
Style="{StaticResource MaterialDesignRaisedDarkButton}">
53+
OKAY
54+
</Button>
55+
</Grid>
56+
</UserControl>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
using System.Windows;
5+
using System.Windows.Controls;
6+
using System.Windows.Data;
7+
using System.Windows.Documents;
8+
using System.Windows.Input;
9+
using System.Windows.Media;
10+
using System.Windows.Media.Imaging;
11+
using System.Windows.Navigation;
12+
using System.Windows.Shapes;
13+
14+
namespace Pangolin_Database_App.User_Controls
15+
{
16+
/// <summary>
17+
/// Interaktionslogik für Messagebox.xaml
18+
/// </summary>
19+
public partial class EditOldModelView : UserControl
20+
{
21+
public EditOldModelView()
22+
{
23+
InitializeComponent();
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)