Vereinsmeisterschaften  22aa7800eae54b428d40e835886cefe1fdefdfdf
This is a software that can be used to manage the internal competition of the swimming club Illertissen called "Vereinsmeisterschaften".
Loading...
Searching...
No Matches
IAnalyticsWidget.cs
1using System.ComponentModel;
2using System.Windows.Media;
3
5{
9 public interface IAnalyticsWidget : INotifyPropertyChanged
10 {
14 string Title { get; }
15
19 string Icon { get; }
20
24 string Info { get; }
25
29 Geometry IconGeometry { get; }
30
35
40
45
50
54 bool IsMaximized { get; set; }
55
59 void Refresh();
60 }
61}
Interface used for any user control that displays analytics data.
double CurrentAnalyticsWidgetHeight
Current Height for the analytics widget.
double CurrentAnalyticsWidgetWidth
Current Width for the analytics widget.
bool IsMaximized
True if the analytics user control is displayed maximized (only one at a time should have this flag s...
Geometry IconGeometry
Icon Geometry for this analytics.
double NormalAnalyticsWidgetWidth
Normal Width for the analytics widget (this is the default width regardless if the control is maximiz...
void Refresh()
Refresh the data displayed in the user control.
string Title
Title used for the diagram of the analytics user control.
double NormalAnalyticsWidgetHeight
Normal Height for the analytics widget (this is the default height regardless if the control is maxim...