sheepit/flamenco toggle
This commit is contained in:
@@ -9,17 +9,36 @@
|
||||
MinWidth="800" MinHeight="600">
|
||||
<Grid RowDefinitions="Auto,Auto,*,Auto">
|
||||
<!-- Toolbar -->
|
||||
<StackPanel Orientation="Horizontal" Margin="5" Grid.Row="0">
|
||||
<Button Name="AddWorkerButton" Content="Add Worker" Margin="5" Width="120"/>
|
||||
<Button Name="EditWorkerButton" Content="Edit Worker" Margin="5" Width="120"/>
|
||||
<Button Name="DeleteWorkerButton" Content="Delete Worker" Margin="5" Width="120"/>
|
||||
<Separator Margin="10,0"/>
|
||||
<Button Name="StartWorkerButton" Content="Start" Margin="5" Width="80"/>
|
||||
<Button Name="StopWorkerButton" Content="Stop" Margin="5" Width="80"/>
|
||||
<Button Name="AttachWorkerButton" Content="Attach" Margin="5" Width="80"/>
|
||||
<Separator Margin="10,0"/>
|
||||
<Button Name="SettingsButton" Content="Settings" Margin="5" Width="80"/>
|
||||
</StackPanel>
|
||||
<Grid Grid.Row="0" Margin="5">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*"/>
|
||||
<ColumnDefinition Width="Auto"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
<StackPanel Orientation="Horizontal" Grid.Column="0">
|
||||
<Button Name="AddWorkerButton" Content="Add Worker" Margin="5" Width="120"/>
|
||||
<Button Name="EditWorkerButton" Content="Edit Worker" Margin="5" Width="120"/>
|
||||
<Button Name="DeleteWorkerButton" Content="Delete Worker" Margin="5" Width="120"/>
|
||||
<Separator Margin="10,0"/>
|
||||
<Button Name="StartWorkerButton" Content="Start" Margin="5" Width="80"/>
|
||||
<Button Name="StopWorkerButton" Content="Stop" Margin="5" Width="80"/>
|
||||
<Button Name="AttachWorkerButton" Content="Attach" Margin="5" Width="80"/>
|
||||
<Separator Margin="10,0"/>
|
||||
<Button Name="SettingsButton" Content="Settings" Margin="5" Width="80"/>
|
||||
</StackPanel>
|
||||
<!-- Operation Mode Toggle Button -->
|
||||
<Button Name="OperationModeToggleButton" Grid.Column="1"
|
||||
HorizontalAlignment="Right"
|
||||
VerticalAlignment="Center"
|
||||
Margin="5"
|
||||
Padding="10,5"
|
||||
MinWidth="120">
|
||||
<StackPanel Orientation="Horizontal" Spacing="5">
|
||||
<TextBlock Text="{Binding OperationModeIcon}" FontSize="16" VerticalAlignment="Center"/>
|
||||
<TextBlock Text="{Binding OperationModeDisplayName}"
|
||||
VerticalAlignment="Center" FontWeight="Bold"/>
|
||||
</StackPanel>
|
||||
</Button>
|
||||
</Grid>
|
||||
|
||||
<!-- Worker Type Filter -->
|
||||
<TabControl Name="WorkerTypeTabs" Grid.Row="1" Margin="5,0">
|
||||
|
||||
Reference in New Issue
Block a user