Add sensor icons.

master
Glenn Maynard 6 years ago
parent c4eb3a548c
commit ded697cf4c
  1. 17
      smx-config/MainWindow.xaml
  2. BIN
      smx-config/Resources/sensor_down.png
  3. BIN
      smx-config/Resources/sensor_left.png
  4. BIN
      smx-config/Resources/sensor_right.png
  5. BIN
      smx-config/Resources/sensor_up.png
  6. 6
      smx-config/SMXConfig.csproj

@ -9,7 +9,8 @@
x:Name="root" x:Name="root"
Title="StepManiaX Platform" Title="StepManiaX Platform"
Icon="Resources/window icon.png" Icon="Resources/window icon.png"
Height="700" Width="525" ResizeMode="CanMinimize"> Height="700" Width="525" ResizeMode="CanMinimize"
UseLayoutRounding="True">
<Window.Resources> <Window.Resources>
<clr:String x:Key="HighPresetDescription" xml:space="preserve">Lighter steps will activate the arrows. <clr:String x:Key="HighPresetDescription" xml:space="preserve">Lighter steps will activate the arrows.
Use if small children are having difficulty pressing the arrows.</clr:String> Use if small children are having difficulty pressing the arrows.</clr:String>
@ -522,7 +523,7 @@ Use if the platform is too sensitive.</clr:String>
</StackPanel> </StackPanel>
<StackPanel Orientation="Vertical" <StackPanel Orientation="Vertical"
Margin="50,300,0,0" Margin="50,265,0,0"
Width="200" Width="200"
HorizontalAlignment="Left" VerticalAlignment="Top"> HorizontalAlignment="Left" VerticalAlignment="Top">
<DockPanel x:Name="SensorBarPanel" HorizontalAlignment="Center"> <DockPanel x:Name="SensorBarPanel" HorizontalAlignment="Center">
@ -537,19 +538,23 @@ Use if the platform is too sensitive.</clr:String>
</ComboBox> </ComboBox>
<StackPanel DockPanel.Dock="Left" Orientation="Vertical"> <StackPanel DockPanel.Dock="Left" Orientation="Vertical">
<controls:LevelBar x:Name="SensorBar1" Margin="0,0,5,0"/> <Image Source="Resources/sensor_left.png" Width="24" Height="24" />
<controls:LevelBar x:Name="SensorBar1" Margin="0,2,5,0"/>
<Label x:Name="SensorBarLevel1" HorizontalAlignment="Center" Content="xxx"/> <Label x:Name="SensorBarLevel1" HorizontalAlignment="Center" Content="xxx"/>
</StackPanel> </StackPanel>
<StackPanel DockPanel.Dock="Left" Orientation="Vertical"> <StackPanel DockPanel.Dock="Left" Orientation="Vertical">
<controls:LevelBar x:Name="SensorBar3" Margin="0,0,5,0"/> <Image Source="Resources/sensor_up.png" Width="24" Height="24" />
<controls:LevelBar x:Name="SensorBar3" Margin="0,2,5,0"/>
<Label x:Name="SensorBarLevel3" HorizontalAlignment="Center" Content="xxx"/> <Label x:Name="SensorBarLevel3" HorizontalAlignment="Center" Content="xxx"/>
</StackPanel> </StackPanel>
<StackPanel DockPanel.Dock="Left" Orientation="Vertical"> <StackPanel DockPanel.Dock="Left" Orientation="Vertical">
<controls:LevelBar x:Name="SensorBar4" Margin="0,0,5,0"/> <Image Source="Resources/sensor_down.png" Width="24" Height="24" />
<controls:LevelBar x:Name="SensorBar4" Margin="0,2,5,0"/>
<Label x:Name="SensorBarLevel4" HorizontalAlignment="Center" Content="xxx"/> <Label x:Name="SensorBarLevel4" HorizontalAlignment="Center" Content="xxx"/>
</StackPanel> </StackPanel>
<StackPanel DockPanel.Dock="Left" Orientation="Vertical"> <StackPanel DockPanel.Dock="Left" Orientation="Vertical">
<controls:LevelBar x:Name="SensorBar2" Margin="0,0,0,0"/> <Image Source="Resources/sensor_right.png" Width="24" Height="24" />
<controls:LevelBar x:Name="SensorBar2" Margin="0,2,0,0"/>
<Label x:Name="SensorBarLevel2" HorizontalAlignment="Center" Content="xxx"/> <Label x:Name="SensorBarLevel2" HorizontalAlignment="Center" Content="xxx"/>
</StackPanel> </StackPanel>
</DockPanel> </DockPanel>

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

@ -212,6 +212,12 @@
<ItemGroup> <ItemGroup>
<Resource Include="Resources\DIP labels.png" /> <Resource Include="Resources\DIP labels.png" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Resource Include="Resources\sensor_down.png" />
<Resource Include="Resources\sensor_left.png" />
<Resource Include="Resources\sensor_right.png" />
<Resource Include="Resources\sensor_up.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets. Other similar extension points exist, see Microsoft.Common.targets.

Loading…
Cancel
Save