Compare commits
2 Commits
398897d9be
...
7af5fb909e
| Author | SHA1 | Date |
|---|---|---|
|
|
7af5fb909e | |
|
|
2632947d1f |
|
|
@ -23,6 +23,7 @@
|
||||||
<MudCheckBox @bind-Value="_circle" Label="Kranz" Color="Color.Primary" />
|
<MudCheckBox @bind-Value="_circle" Label="Kranz" Color="Color.Primary" />
|
||||||
<MudCheckBox @bind-Value="_bell" Label="Glocke" Color="Color.Warning" />
|
<MudCheckBox @bind-Value="_bell" Label="Glocke" Color="Color.Warning" />
|
||||||
<MudCheckBox @bind-Value="_gutter" Label="Rinne" Color="Color.Error" />
|
<MudCheckBox @bind-Value="_gutter" Label="Rinne" Color="Color.Error" />
|
||||||
|
<MudCheckBox @bind-Value="_noWood" Label="kein Holz" Color="Color.Tertiary" />
|
||||||
</MudStack>
|
</MudStack>
|
||||||
|
|
||||||
<MudTextField @bind-Value="_description"
|
<MudTextField @bind-Value="_description"
|
||||||
|
|
|
||||||
|
|
@ -13,13 +13,15 @@
|
||||||
<MudSelect T="int" @bind-Value="_selectedMonth" Label="Monat" Style="width: 150px;">
|
<MudSelect T="int" @bind-Value="_selectedMonth" Label="Monat" Style="width: 150px;">
|
||||||
@for (int m = 1; m <= 12; m++)
|
@for (int m = 1; m <= 12; m++)
|
||||||
{
|
{
|
||||||
<MudSelectItem Value="@m">@GetMonthName(m)</MudSelectItem>
|
var month = m;
|
||||||
|
<MudSelectItem Value="@month">@GetMonthName(month)</MudSelectItem>
|
||||||
}
|
}
|
||||||
</MudSelect>
|
</MudSelect>
|
||||||
<MudSelect T="int" @bind-Value="_selectedYear" Label="Jahr" Style="width: 120px;">
|
<MudSelect T="int" @bind-Value="_selectedYear" Label="Jahr" Style="width: 120px;">
|
||||||
@for (int y = DateTime.Today.Year; y >= DateTime.Today.Year - 2; y--)
|
@for (int y = DateTime.Today.Year; y >= DateTime.Today.Year - 2; y--)
|
||||||
{
|
{
|
||||||
<MudSelectItem Value="@y">@y</MudSelectItem>
|
var year = y;
|
||||||
|
<MudSelectItem Value="@year">@year</MudSelectItem>
|
||||||
}
|
}
|
||||||
</MudSelect>
|
</MudSelect>
|
||||||
</MudStack>
|
</MudStack>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue