using System; using System.Collections.Generic; using System.Windows; using System.Windows.Controls; using System.Windows.Input; using System.Windows.Media; using BeWo.View.Detail; using BeWo.View.Detail.Report; using BeWo.ViewModel; using BS.Shared.DataContracts; namespace BeWo.View.Controls { /// /// Interaction logic for DienstplanerControl.xaml /// public partial class DienstplanerControl : UserControl { public DienstplanerControl() { InitializeComponent(); ToolTipService.SetShowDuration(this, 60000); } public string Text { get => txt.Text; set => txt.Text = value; } public new double FontSize { get => txt.FontSize; set => txt.FontSize = value; } public Border BorderLight { get => boLight; set => boLight = value; } public Border BorderBlack { get => bo; set => bo = value; } } }