-
Notifications
You must be signed in to change notification settings - Fork 398
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Resources and Style to Popup (#1351)
- Loading branch information
Showing
24 changed files
with
502 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,53 @@ | ||
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:popups="clr-namespace:CommunityToolkit.Maui.Sample.Views.Popups" | ||
x:Class="CommunityToolkit.Maui.Sample.App"> | ||
<Application.Resources> | ||
<ResourceDictionary> | ||
<ResourceDictionary.MergedDictionaries> | ||
<ResourceDictionary Source="Resources/Styles/Colors.xaml" /> | ||
<ResourceDictionary Source="Resources/Styles/Styles.xaml" /> | ||
</ResourceDictionary.MergedDictionaries> | ||
|
||
<Style TargetType="{x:Type popups:ImplicitStylePopup}"> | ||
<Setter Property="Size" Value="100,100" /> | ||
<Setter Property="Color" Value="Red" /> | ||
<Setter Property="HorizontalOptions" Value="Start" /> | ||
<Setter Property="VerticalOptions" Value="Start" /> | ||
<Setter Property="CanBeDismissedByTappingOutsideOfPopup" Value="True" /> | ||
</Style> | ||
|
||
<Style x:Key="ExplicitPopupStyle" TargetType="{x:Type popups:ExplicitStylePopup}"> | ||
<Setter Property="Size" Value="200,100" /> | ||
<Setter Property="Color" Value="Yellow" /> | ||
<Setter Property="HorizontalOptions" Value="End" /> | ||
<Setter Property="VerticalOptions" Value="Start" /> | ||
<Setter Property="CanBeDismissedByTappingOutsideOfPopup" Value="True" /> | ||
</Style> | ||
|
||
<Style x:Key="BasePopupStyle" TargetType="{x:Type popups:StyleInheritancePopup}"> | ||
<Setter Property="Size" Value="200,200" /> | ||
</Style> | ||
<Style x:Key="InheritancePopupStyle" TargetType="{x:Type popups:StyleInheritancePopup}" BasedOn="{StaticResource BasePopupStyle}"> | ||
<Setter Property="Color" Value="SkyBlue" /> | ||
<Setter Property="HorizontalOptions" Value="End" /> | ||
<Setter Property="VerticalOptions" Value="End" /> | ||
<Setter Property="CanBeDismissedByTappingOutsideOfPopup" Value="True" /> | ||
</Style> | ||
|
||
<Style x:Key="DynamicBasePopupStyle" TargetType="{x:Type popups:DynamicStyleInheritancePopup}"> | ||
<Setter Property="Size" Value="150,150" /> | ||
</Style> | ||
<Style x:Key="DynamicInheritancePopupStyle1" TargetType="{x:Type popups:DynamicStyleInheritancePopup}" BasedOn="{StaticResource DynamicBasePopupStyle}"> | ||
<Setter Property="Color" Value="Purple" /> | ||
<Setter Property="VerticalOptions" Value="End" /> | ||
</Style> | ||
<Style x:Key="DynamicInheritancePopupStyle2" TargetType="{x:Type popups:DynamicStyleInheritancePopup}" BaseResourceKey="DynamicInheritancePopupStyle1"> | ||
<Setter Property="Color" Value="Orange" /> | ||
<Setter Property="HorizontalOptions" Value="End" /> | ||
<Setter Property="CanBeDismissedByTappingOutsideOfPopup" Value="True" /> | ||
</Style> | ||
|
||
</ResourceDictionary> | ||
</Application.Resources> | ||
</Application> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
samples/CommunityToolkit.Maui.Sample/CommunityToolkit.Maui.Sample.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
samples/CommunityToolkit.Maui.Sample/Pages/Views/Popup/StylePopupPage.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<pages:BasePage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:pages="clr-namespace:CommunityToolkit.Maui.Sample.Pages" | ||
xmlns:viewModels="clr-namespace:CommunityToolkit.Maui.Sample.ViewModels.Views" | ||
x:TypeArguments="viewModels:StylePopupViewModel" | ||
x:DataType="viewModels:StylePopupViewModel" | ||
x:Class="CommunityToolkit.Maui.Sample.Pages.Views.StylePopupPage" | ||
Title="StylePopupPage"> | ||
|
||
<ScrollView Orientation="Vertical"> | ||
<StackLayout Orientation="Vertical" Spacing="5"> | ||
<Label Text="This sample demonstrates various ways of using applying a Style to a Popup" | ||
HorizontalOptions="Center" | ||
HorizontalTextAlignment="Center" | ||
VerticalTextAlignment="Start"/> | ||
|
||
<Button | ||
Text="Implicit Style" | ||
BackgroundColor="Blue" | ||
TextColor="White" | ||
Command="{Binding DisplayImplicitStylePopupCommand}"/> | ||
<Button | ||
Text="Explicit Style" | ||
BackgroundColor="Blue" | ||
TextColor="White" | ||
Command="{Binding DisplayExplicitStylePopupCommand}"/> | ||
<Button | ||
Text="Dynamic Style" | ||
BackgroundColor="Blue" | ||
TextColor="White" | ||
Command="{Binding DisplayDynamicStylePopupCommand}"/> | ||
<Button | ||
Text="ApplyToDerivedTypes" | ||
BackgroundColor="Blue" | ||
TextColor="White" | ||
Command="{Binding DisplayApplyToDerivedTypesPopupCommand}"/> | ||
<Button | ||
Text="Style Inheritance" | ||
BackgroundColor="Blue" | ||
TextColor="White" | ||
Command="{Binding DisplayStyleInheritancePopupCommand}"/> | ||
<Button | ||
Text="Dynamic Style Inheritance" | ||
BackgroundColor="Blue" | ||
TextColor="White" | ||
Command="{Binding DisplayDynamicStyleInheritancePopupCommand}"/> | ||
<Button | ||
Text="Style Class" | ||
BackgroundColor="Blue" | ||
TextColor="White" | ||
Command="{Binding DisplayStyleClassPopupCommand}"/> | ||
</StackLayout> | ||
</ScrollView> | ||
|
||
</pages:BasePage> |
10 changes: 10 additions & 0 deletions
10
samples/CommunityToolkit.Maui.Sample/Pages/Views/Popup/StylePopupPage.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using CommunityToolkit.Maui.Sample.ViewModels.Views; | ||
namespace CommunityToolkit.Maui.Sample.Pages.Views; | ||
|
||
public partial class StylePopupPage : BasePage<StylePopupViewModel> | ||
{ | ||
public StylePopupPage(StylePopupViewModel stylePopupViewModel) : base(stylePopupViewModel) | ||
{ | ||
InitializeComponent(); | ||
} | ||
} |
59 changes: 59 additions & 0 deletions
59
samples/CommunityToolkit.Maui.Sample/ViewModels/Views/Popup/StylePopupViewModel.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
using CommunityToolkit.Maui.Sample.Views.Popups; | ||
using CommunityToolkit.Maui.Views; | ||
using CommunityToolkit.Mvvm.Input; | ||
|
||
namespace CommunityToolkit.Maui.Sample.ViewModels.Views; | ||
|
||
public partial class StylePopupViewModel : BaseViewModel | ||
{ | ||
static Page MainPage => Shell.Current; | ||
|
||
[RelayCommand] | ||
static void DisplayImplicitStylePopup() | ||
{ | ||
var popup = new ImplicitStylePopup(); | ||
MainPage.ShowPopup(popup); | ||
} | ||
|
||
[RelayCommand] | ||
static void DisplayExplicitStylePopup() | ||
{ | ||
var popup = new ExplicitStylePopup(); | ||
MainPage.ShowPopup(popup); | ||
} | ||
|
||
[RelayCommand] | ||
static void DisplayDynamicStylePopup() | ||
{ | ||
var popup = new DynamicStylePopup(); | ||
MainPage.ShowPopup(popup); | ||
} | ||
|
||
[RelayCommand] | ||
static void DisplayApplyToDerivedTypesPopup() | ||
{ | ||
var popup = new ApplyToDerivedTypesPopup(); | ||
MainPage.ShowPopup(popup); | ||
} | ||
|
||
[RelayCommand] | ||
static void DisplayStyleInheritancePopup() | ||
{ | ||
var popup = new StyleInheritancePopup(); | ||
MainPage.ShowPopup(popup); | ||
} | ||
|
||
[RelayCommand] | ||
static void DisplayDynamicStyleInheritancePopup() | ||
{ | ||
var popup = new DynamicStyleInheritancePopup(); | ||
MainPage.ShowPopup(popup); | ||
} | ||
|
||
[RelayCommand] | ||
static void DisplayStyleClassPopup() | ||
{ | ||
var popup = new StyleClassPopup(); | ||
MainPage.ShowPopup(popup); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
samples/CommunityToolkit.Maui.Sample/Views/Popups/ApplyToDerivedTypesPopup.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<mct:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:mct="http://schemas.microsoft.com/dotnet/2022/maui/toolkit" | ||
x:Class="CommunityToolkit.Maui.Sample.Views.Popups.ApplyToDerivedTypesPopup"> | ||
<mct:Popup.Resources> | ||
<Style TargetType="{x:Type mct:Popup}" ApplyToDerivedTypes="True"> | ||
<Setter Property="Size" Value="150,150" /> | ||
<Setter Property="Color" Value="Orange" /> | ||
<Setter Property="HorizontalOptions" Value="End" /> | ||
<Setter Property="VerticalOptions" Value="Center" /> | ||
<Setter Property="CanBeDismissedByTappingOutsideOfPopup" Value="True" /> | ||
</Style> | ||
</mct:Popup.Resources> | ||
|
||
<Grid VerticalOptions="Fill" HorizontalOptions="Fill" BackgroundColor="Transparent"> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
</Grid> | ||
</mct:Popup> |
15 changes: 15 additions & 0 deletions
15
samples/CommunityToolkit.Maui.Sample/Views/Popups/ApplyToDerivedTypesPopup.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using CommunityToolkit.Maui.Views; | ||
|
||
namespace CommunityToolkit.Maui.Sample.Views.Popups; | ||
|
||
/// <summary> | ||
/// This popup demonstrates how the ApplyToDerivedTypes property can allow for Popup implementations | ||
/// that inherit from Popup to still use a common Style definition. | ||
/// </summary> | ||
public partial class ApplyToDerivedTypesPopup : Popup | ||
{ | ||
public ApplyToDerivedTypesPopup() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
samples/CommunityToolkit.Maui.Sample/Views/Popups/DynamicStyleInheritancePopup.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<mct:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:mct="http://schemas.microsoft.com/dotnet/2022/maui/toolkit" | ||
x:Class="CommunityToolkit.Maui.Sample.Views.Popups.DynamicStyleInheritancePopup" | ||
Style="{StaticResource DynamicInheritancePopupStyle2}"> | ||
|
||
<Grid VerticalOptions="Fill" HorizontalOptions="Fill" BackgroundColor="Transparent"> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
</Grid> | ||
</mct:Popup> |
11 changes: 11 additions & 0 deletions
11
samples/CommunityToolkit.Maui.Sample/Views/Popups/DynamicStyleInheritancePopup.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using CommunityToolkit.Maui.Views; | ||
|
||
namespace CommunityToolkit.Maui.Sample.Views.Popups; | ||
|
||
public partial class DynamicStyleInheritancePopup : Popup | ||
{ | ||
public DynamicStyleInheritancePopup() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
samples/CommunityToolkit.Maui.Sample/Views/Popups/DynamicStylePopup.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<mct:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:mct="http://schemas.microsoft.com/dotnet/2022/maui/toolkit" | ||
xmlns:popups="clr-namespace:CommunityToolkit.Maui.Sample.Views.Popups" | ||
x:Class="CommunityToolkit.Maui.Sample.Views.Popups.DynamicStylePopup" | ||
Style="{DynamicResource DynamicPopupStyle}"> | ||
<mct:Popup.Resources> | ||
<Style TargetType="{x:Type popups:DynamicStylePopup}"> | ||
<Setter Property="Size" Value="100,200" /> | ||
<Setter Property="Color" Value="Green" /> | ||
<Setter Property="HorizontalOptions" Value="Center" /> | ||
<Setter Property="VerticalOptions" Value="Start" /> | ||
<Setter Property="CanBeDismissedByTappingOutsideOfPopup" Value="True" /> | ||
</Style> | ||
</mct:Popup.Resources> | ||
|
||
<Grid VerticalOptions="Fill" HorizontalOptions="Fill" BackgroundColor="Transparent"> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
</Grid> | ||
</mct:Popup> |
15 changes: 15 additions & 0 deletions
15
samples/CommunityToolkit.Maui.Sample/Views/Popups/DynamicStylePopup.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using CommunityToolkit.Maui.Views; | ||
|
||
namespace CommunityToolkit.Maui.Sample.Views.Popups; | ||
|
||
/// <summary> | ||
/// This popup demonstrates how a <see cref="Style"/> is applied to a <see cref="Popup"/> | ||
/// through the use of the <see cref="Popup.Style"/> property using the <see cref="DynamicResourceExtension"/>. | ||
/// </summary> | ||
public partial class DynamicStylePopup : Popup | ||
{ | ||
public DynamicStylePopup() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
samples/CommunityToolkit.Maui.Sample/Views/Popups/ExplicitStylePopup.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<mct:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:mct="http://schemas.microsoft.com/dotnet/2022/maui/toolkit" | ||
x:Class="CommunityToolkit.Maui.Sample.Views.Popups.ExplicitStylePopup" | ||
Style="{StaticResource ExplicitPopupStyle}"> | ||
|
||
<Grid VerticalOptions="Fill" HorizontalOptions="Fill" BackgroundColor="Transparent"> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
</Grid> | ||
</mct:Popup> |
15 changes: 15 additions & 0 deletions
15
samples/CommunityToolkit.Maui.Sample/Views/Popups/ExplicitStylePopup.xaml.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
using CommunityToolkit.Maui.Views; | ||
|
||
namespace CommunityToolkit.Maui.Sample.Views.Popups; | ||
|
||
/// <summary> | ||
/// This popup demonstrates how a <see cref="Style"/> is applied to a <see cref="Popup"/> explicitly | ||
/// through the use of the <see cref="Popup.Style"/> property using the <see cref="StaticResourceExtension"/>. | ||
/// </summary> | ||
public partial class ExplicitStylePopup : Popup | ||
{ | ||
public ExplicitStylePopup() | ||
{ | ||
InitializeComponent(); | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
samples/CommunityToolkit.Maui.Sample/Views/Popups/ImplicitStylePopup.xaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<mct:Popup xmlns="http://schemas.microsoft.com/dotnet/2021/maui" | ||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" | ||
xmlns:mct="http://schemas.microsoft.com/dotnet/2022/maui/toolkit" | ||
x:Class="CommunityToolkit.Maui.Sample.Views.Popups.ImplicitStylePopup"> | ||
|
||
<Grid VerticalOptions="Fill" HorizontalOptions="Fill" BackgroundColor="Transparent"> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="Start" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="Start" BackgroundColor="Blue" /> | ||
<Grid WidthRequest="10" HeightRequest="10" VerticalOptions="End" HorizontalOptions="End" BackgroundColor="Blue" /> | ||
</Grid> | ||
</mct:Popup> |
Oops, something went wrong.