ChatBox.xaml 972 B

1234567891011121314151617
  1. <widgets:ChatBox
  2. xmlns="https://spacestation14.io"
  3. xmlns:graphics="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
  4. xmlns:widgets="clr-namespace:Content.Client.UserInterface.Systems.Chat.Widgets"
  5. xmlns:controls="clr-namespace:Content.Client.UserInterface.Systems.Chat.Controls"
  6. MouseFilter="Stop"
  7. HorizontalExpand="True"
  8. VerticalExpand="True"
  9. MinSize="465 225">
  10. <PanelContainer Name="ChatWindowPanel" Access="Public" HorizontalExpand="True" VerticalExpand="True"
  11. StyleClasses="StyleNano.StyleClassChatPanel">
  12. <BoxContainer Orientation="Vertical" SeparationOverride="4" HorizontalExpand="True" VerticalExpand="True">
  13. <OutputPanel Name="Contents" HorizontalExpand="True" VerticalExpand="True" Margin="8 8 8 4" />
  14. <controls:ChatInputBox HorizontalExpand="True" Name="ChatInput" Access="Public" Margin="2"/>
  15. </BoxContainer>
  16. </PanelContainer>
  17. </widgets:ChatBox>