CollabVMDesktopClient/CollabVMClient/Views/CollabVMChatView.axaml
Elijah 08e5821df4 - add turns and vm control
- remove vlc since it doesnt work and takes up like 200mb
- enforce light mode temporarily since dark mode breaks everything
2023-08-29 13:39:51 -04:00

31 lines
1.3 KiB
XML

<Window 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:av="clr-namespace:TheArtOfDev.HtmlRenderer.Avalonia;assembly=Avalonia.HtmlRenderer"
xmlns:i="https://github.com/projektanker/icons.avalonia"
mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="800"
x:Class="CollabVMClient.Views.CollabVMChatView"
Title="{Binding Title}"
Width="400" Height="800" CanResize="False">
<StackPanel Orientation="Vertical">
<ScrollViewer Width="400" Height="765">
<ItemsControl ItemsSource="{Binding ChatMessages}">
<ItemsControl.ItemTemplate>
<DataTemplate>
<av:HtmlPanel Text="{Binding HTML}" Width="400" MaxWidth="400"/>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</ScrollViewer>
<StackPanel Orientation="Horizontal">
<TextBlock Margin="5 0 0 0" VerticalAlignment="Center" FontWeight="Bold" Text="{Binding Username}" Width="95"/>
<TextBox Name="chatInput" AcceptsReturn="False" Width="250"/>
<Button Name="sendBtn" Background="Blue" Width="50" Height="35">
<i:Icon Value="mdi-send" FontSize="25" Foreground="LightGray"/>
</Button>
</StackPanel>
</StackPanel>
</Window>