Files

21 lines
776 B
Plaintext
Raw Permalink Normal View History

2024-12-26 18:54:37 +03:00
<UserControl
d:DesignHeight="450"
d:DesignWidth="800"
mc:Ignorable="d"
x:Class="Nebula.Launcher.Views.Popup.InfoPopupView"
2025-01-14 22:10:16 +03:00
x:DataType="popup:InfoPopupViewModel"
2024-12-26 18:54:37 +03:00
xmlns="https://github.com/avaloniaui"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
2025-01-14 22:10:16 +03:00
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:popup="clr-namespace:Nebula.Launcher.ViewModels.Popup">
2024-12-26 18:54:37 +03:00
<Design.DataContext>
2025-01-14 22:10:16 +03:00
<popup:InfoPopupViewModel />
2024-12-26 18:54:37 +03:00
</Design.DataContext>
<Panel HorizontalAlignment="Center" VerticalAlignment="Center">
<Label>
2025-06-23 19:48:11 +03:00
<TextBlock Text="{Binding InfoText}" TextWrapping="Wrap"/>
2024-12-26 18:54:37 +03:00
</Label>
</Panel>
2025-01-14 22:10:16 +03:00
</UserControl>