Files
BeWoPlaner/BeWo/View/Controls/DienstplanerControl.xaml.cs
2020-09-30 10:00:31 +02:00

50 lines
1.1 KiB
C#

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
{
/// <summary>
/// Interaction logic for DienstplanerControl.xaml
/// </summary>
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;
}
}
}