Event details page basic layout.
This commit is contained in:
Binary file not shown.
@@ -91,6 +91,13 @@ namespace Wino.Core.UWP.Controls
|
||||
{ WinoIconGlyph.CalendarAttendee, "\uE91a" },
|
||||
{ WinoIconGlyph.CalendarSync, "\uE91d" },
|
||||
{ WinoIconGlyph.CalendarError, "\uE916" },
|
||||
{ WinoIconGlyph.CalendarAttendees, "\uE929" },
|
||||
{ WinoIconGlyph.EventEditSeries, "\uE92A" },
|
||||
{ WinoIconGlyph.EventTentative, "\uE928" },
|
||||
{ WinoIconGlyph.EventAccept, "\uE925" },
|
||||
{ WinoIconGlyph.EventRespond, "\uE924" },
|
||||
{ WinoIconGlyph.EventReminder, "\uE923" },
|
||||
{ WinoIconGlyph.EventJoinOnline, "\uE926" },
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
@@ -102,7 +102,10 @@
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
</Grid.ColumnDefinitions>
|
||||
<ContentPresenter x:Name="ShellContentContainer" Content="{x:Bind ShellFrameContent, Mode=OneWay}">
|
||||
<ContentPresenter
|
||||
x:Name="ShellContentContainer"
|
||||
Content="{x:Bind ShellFrameContent, Mode=OneWay}"
|
||||
Visibility="{x:Bind IsShellFrameContentVisible, Mode=OneWay}">
|
||||
<ContentPresenter.ContentTransitions>
|
||||
<TransitionCollection>
|
||||
<PaneThemeTransition Edge="Top" />
|
||||
|
||||
@@ -24,6 +24,14 @@ namespace Wino.Core.UWP.Controls
|
||||
public static readonly DependencyProperty ReconnectCommandProperty = DependencyProperty.Register(nameof(ReconnectCommand), typeof(ICommand), typeof(WinoAppTitleBar), new PropertyMetadata(null));
|
||||
public static readonly DependencyProperty ShrinkShellContentOnExpansionProperty = DependencyProperty.Register(nameof(ShrinkShellContentOnExpansion), typeof(bool), typeof(WinoAppTitleBar), new PropertyMetadata(true));
|
||||
public static readonly DependencyProperty IsDragAreaProperty = DependencyProperty.Register(nameof(IsDragArea), typeof(bool), typeof(WinoAppTitleBar), new PropertyMetadata(false, new PropertyChangedCallback(OnIsDragAreaChanged)));
|
||||
public static readonly DependencyProperty IsShellFrameContentVisibleProperty = DependencyProperty.Register(nameof(IsShellFrameContentVisible), typeof(bool), typeof(WinoAppTitleBar), new PropertyMetadata(true));
|
||||
|
||||
|
||||
public bool IsShellFrameContentVisible
|
||||
{
|
||||
get { return (bool)GetValue(IsShellFrameContentVisibleProperty); }
|
||||
set { SetValue(IsShellFrameContentVisibleProperty, value); }
|
||||
}
|
||||
|
||||
public ICommand ReconnectCommand
|
||||
{
|
||||
|
||||
@@ -90,7 +90,15 @@ namespace Wino.Core.UWP.Controls
|
||||
CalendarError,
|
||||
Reminder,
|
||||
CalendarAttendee,
|
||||
CalendarAttendees,
|
||||
CalendarSync,
|
||||
EventRespond,
|
||||
EventAccept,
|
||||
EventTentative,
|
||||
EventDecline,
|
||||
EventReminder,
|
||||
EventEditSeries,
|
||||
EventJoinOnline,
|
||||
}
|
||||
|
||||
public class WinoFontIcon : FontIcon
|
||||
|
||||
Reference in New Issue
Block a user