AtmosTab.xaml 899 B

123456789101112131415
  1. <Control
  2. xmlns="https://spacestation14.io"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:cc="clr-namespace:Content.Client.Administration.UI.CustomControls"
  5. xmlns:at="clr-namespace:Content.Client.Administration.UI.Tabs.AtmosTab"
  6. Margin="4"
  7. MinSize="50 50">
  8. <GridContainer Columns="4">
  9. <cc:UICommandButton Text="{Loc admin-ui-atmos-add}" Command="addatmos" WindowType="{x:Type at:AddAtmosWindow}" />
  10. <cc:UICommandButton Text="{Loc admin-ui-atmos-add-gas}" Command="addgas" WindowType="{x:Type at:AddGasWindow}" />
  11. <cc:UICommandButton Text="{Loc admin-ui-atmos-fill-gas}" Command="fillgas" WindowType="{x:Type at:FillGasWindow}" />
  12. <cc:UICommandButton Text="{Loc admin-ui-atmos-set-temperature}" Command="settemp"
  13. WindowType="{x:Type at:SetTemperatureWindow}" />
  14. </GridContainer>
  15. </Control>