Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
ResultsUserControlPodiumPersonStart.xaml.cs
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
8using System.Windows.Data;
9using System.Windows.Documents;
10using System.Windows.Input;
11using System.Windows.Media;
12using System.Windows.Media.Imaging;
13using System.Windows.Navigation;
14using System.Windows.Shapes;
16
18{
22 public partial class ResultsUserControlPodiumPersonStart : UserControl
23 {
24 public PersonStart Start
25 {
26 get { return (PersonStart)GetValue(StartProperty); }
27 set { SetValue(StartProperty, value); }
28 }
29
30 // Using a DependencyProperty as the backing store for Start. This enables animation, styling, binding, etc...
31 public static readonly DependencyProperty StartProperty = DependencyProperty.Register(nameof(Start), typeof(PersonStart), typeof(ResultsUserControlPodiumPersonStart), new PropertyMetadata(null));
32
33
34 public ResultPodiumsPlaces PodiumsPlace
35 {
36 get { return (ResultPodiumsPlaces)GetValue(PodiumsPlaceProperty); }
37 set { SetValue(PodiumsPlaceProperty, value); }
38 }
39
40 // Using a DependencyProperty as the backing store for PodiumsPlaces. This enables animation, styling, binding, etc...
41 public static readonly DependencyProperty PodiumsPlaceProperty = DependencyProperty.Register(nameof(PodiumsPlace), typeof(ResultPodiumsPlaces), typeof(ResultsUserControlPodiumPersonStart), new PropertyMetadata(ResultPodiumsPlaces.Gold));
42
43
44 public ResultsUserControlPodiumPersonStart()
45 {
46 InitializeComponent();
47 }
48 }
49}
Class describing a start of a person.
Definition PersonStart.cs:9
ResultPodiumsPlaces
Available result podium types.