13 lines
466 B
XML
13 lines
466 B
XML
<UserControl xmlns="https://github.com/avaloniaui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:controls="clr-namespace:gregExtractor.GUI.Controls"
|
|
x:Class="gregExtractor.GUI.Controls.ToastHost">
|
|
<ItemsControl ItemsSource="{Binding Toasts}">
|
|
<ItemsControl.ItemTemplate>
|
|
<DataTemplate>
|
|
<controls:Toast/>
|
|
</DataTemplate>
|
|
</ItemsControl.ItemTemplate>
|
|
</ItemsControl>
|
|
</UserControl>
|