29 lines
720 B
C#
29 lines
720 B
C#
using System.Collections.Generic;
|
|
using System.Windows;
|
|
using System.Windows.Media;
|
|
|
|
namespace BeWo.Controls.Calendar
|
|
{
|
|
internal class IndexHeaderElement
|
|
{
|
|
public Brush BackGround = Brushes.Transparent;
|
|
|
|
public Brush BorderBrush = Brushes.Gray;
|
|
|
|
public string Content;
|
|
|
|
public FontStyle FontStyle = FontStyles.Normal;
|
|
|
|
public Brush ForeGround = Brushes.Black;
|
|
|
|
public HorizontalAlignment HorizontalAlignment = HorizontalAlignment.Left;
|
|
|
|
public string Tooltip;
|
|
|
|
public VerticalAlignment VerticalAlignment = VerticalAlignment.Center;
|
|
}
|
|
|
|
internal class IndexHeaderContent : List<IndexHeaderElement>
|
|
{
|
|
}
|
|
} |