Utils: Add PhoneNrTypes

This commit is contained in:
2023-12-21 22:21:38 +01:00
parent 69e6b6a713
commit 4d5ad13e0c
2 changed files with 11 additions and 5 deletions

View File

@ -19,11 +19,7 @@ namespace Elwig.Windows {
private readonly RoutedCommand CtrlF = new();
private readonly (ComboBox, TextBox, TextBox)[] PhoneNrInputs;
private static ObservableCollection<KeyValuePair<string, string>> PhoneNrTypes { get; set; } = [
new("landline", "Tel.-Nr. (Festnetz)"),
new("mobile", "Tel.-Nr. (mobil)"),
new("fax", "Fax-Nr."),
];
private static ObservableCollection<KeyValuePair<string, string>> PhoneNrTypes { get; set; } = new(Utils.PhoneNrTypes);
public MemberAdminWindow() {
InitializeComponent();