1 files changed, 0 insertions, 21 deletions
diff --git a/MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml b/MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml
deleted file mode 100644
index 0e43d99..0000000
--- a/MatrixRoomUtils.Desktop/Components/Pages/RoomList.axaml
+++ /dev/null
@@ -1,21 +0,0 @@
-<UserControl xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:components="clr-namespace:MatrixRoomUtils.Desktop.Components.Pages"
- xmlns:components1="clr-namespace:MatrixRoomUtils.Desktop.Components"
- xmlns:abstractions="clr-namespace:MatrixRoomUtils.Abstractions;assembly=MatrixRoomUtils.Abstractions"
-
- mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
- x:Class="MatrixRoomUtils.Desktop.Components.Pages.RoomList"
- x:DataType="components:RoomList"
- DataContext="{Binding $self}"
- >
- <ListBox ItemsSource="{Binding Rooms}">
- <ListBox.ItemTemplate>
- <DataTemplate DataType="abstractions:RoomInfo">
- <components1:RoomListEntry Room="{Binding Path=.}"/>
- </DataTemplate>
- </ListBox.ItemTemplate>
- </ListBox>
-</UserControl>
|