22 lines
767 B
XML
22 lines
767 B
XML
<UserControl
|
|
d:DesignHeight="450"
|
|
d:DesignWidth="800"
|
|
mc:Ignorable="d"
|
|
x:Class="Nebula.Launcher.Views.Popup.InfoPopupView"
|
|
x:DataType="viewModels:InfoPopupViewModel"
|
|
xmlns="https://github.com/avaloniaui"
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
xmlns:viewModels="clr-namespace:Nebula.Launcher.ViewModels"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<Design.DataContext>
|
|
<viewModels:InfoPopupViewModel />
|
|
</Design.DataContext>
|
|
|
|
<Panel HorizontalAlignment="Center" VerticalAlignment="Center">
|
|
<Label>
|
|
<TextBlock Text="{Binding InfoText}" />
|
|
</Label>
|
|
</Panel>
|
|
</UserControl>
|