Rename to Torch, add command system
This commit is contained in:
20
Torch.Server/Views/ModsControl.xaml
Normal file
20
Torch.Server/Views/ModsControl.xaml
Normal file
@@ -0,0 +1,20 @@
|
||||
<UserControl x:Class="Torch.Server.ModsControl"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||
xmlns:local="clr-namespace:Torch.Server"
|
||||
mc:Ignorable="d">
|
||||
<StackPanel Margin="0,0,0,0" Orientation="Vertical">
|
||||
<Label Content="Mods" Margin="5,5,5,5"/>
|
||||
<ListView x:Name="ModList" HorizontalAlignment="Left" Height="265" VerticalAlignment="Top" Width="300" Margin="5,5,5,5" MouseDoubleClick="modList_OnMouesDoubleClick">
|
||||
<ListView.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<TextBlock Text="{Binding FriendlyName}" ToolTip="{Binding Description}"/>
|
||||
</DataTemplate>
|
||||
</ListView.ItemTemplate>
|
||||
</ListView>
|
||||
<Button x:Name="AddBtn" Content="Add Mods" Click="addBtn_Click" Margin="5,5,5,5"/>
|
||||
<Button x:Name="RemBtn" Content="Remove Mods" Margin="5,5,5,5" Click="remBtn_Click"/>
|
||||
</StackPanel>
|
||||
</UserControl>
|
Reference in New Issue
Block a user