24 lines
1.3 KiB
XML
24 lines
1.3 KiB
XML
<controls:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
|
|
Title="{Loc 'aac-tablet-title'}"
|
|
Resizable="True"
|
|
SetSize="540 300"
|
|
MinSize="540 300">
|
|
<BoxContainer Orientation="Vertical">
|
|
<BoxContainer Orientation="Horizontal" HorizontalExpand="True">
|
|
<CheckBox Name="ShouldBuffer" Text="{Loc 'aac-tablet-combine'}"/>
|
|
<LineEdit Name="BufferedString" Editable="False" HorizontalExpand="True"/>
|
|
<Button Name="ClearButton" Text="{Loc 'aac-tablet-backspace'}" TextAlign="Center"/>
|
|
<Button Name="SendButton" Text="{Loc 'aac-tablet-send'}" TextAlign="Center"/>
|
|
</BoxContainer>
|
|
<TabContainer Name="WindowBody" TabTitle="Search" VerticalExpand="True" MouseFilter="Pass">
|
|
<BoxContainer Orientation="Vertical" Name="Search" MinSize="540 200">
|
|
<LineEdit Name="SearchBar" PlaceHolder="Search" HorizontalExpand="True" Margin="4 4" />
|
|
<ScrollContainer HorizontalExpand="True" VerticalExpand="True">
|
|
<BoxContainer Name="SearchResults" Orientation="Vertical" HorizontalExpand="True" />
|
|
</ScrollContainer>
|
|
</BoxContainer>
|
|
</TabContainer>
|
|
</BoxContainer>
|
|
</controls:FancyWindow>
|