[#10] DeliveryAdminWindow: Move generation of tooltips to DeliveryService
This commit is contained in:
@ -4,6 +4,7 @@ using Elwig.Models.Entities;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Windows.Controls;
|
||||
|
||||
namespace Elwig.ViewModels {
|
||||
public partial class DeliveryAdminViewModel : ObservableObject {
|
||||
@ -158,14 +159,19 @@ namespace Elwig.ViewModels {
|
||||
private bool? _isHandPicked;
|
||||
|
||||
[ObservableProperty]
|
||||
private string _statusMembers = "Mitglieder: -";
|
||||
private string _statusMembers = "-";
|
||||
[ObservableProperty]
|
||||
private string _statusDeliveries = "Lieferungen: -";
|
||||
private string _statusDeliveries = "-";
|
||||
[ObservableProperty]
|
||||
private string _statusVarieties = "Sorten: -";
|
||||
private string _statusVarieties = "-";
|
||||
[ObservableProperty]
|
||||
private string _statusWeight = "Gewicht: -";
|
||||
private string _statusWeight = "-";
|
||||
[ObservableProperty]
|
||||
private string _statusGradation = "Gradation: -";
|
||||
private string _statusGradation = "-";
|
||||
|
||||
[ObservableProperty]
|
||||
private Grid? _statusWeightToolTip;
|
||||
[ObservableProperty]
|
||||
private Grid? _statusGradationToolTip;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user