mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
Player List Changes
- have adjusted the margin of the border around the players in the list.
This commit is contained in:
parent
61b16d6ab2
commit
0a3d42736e
8 changed files with 73 additions and 25 deletions
|
|
@ -9,8 +9,8 @@
|
|||
|
||||
<entry>
|
||||
<id>urn:uuid:2E2A14AE-EE5B-4384-8143-BF5D1C8A487D</id>
|
||||
<title>1.1.428 (1.1.428.2)</title>
|
||||
<summary>1.1.428.2</summary>
|
||||
<title>1.1.428 (1.1.428.3)</title>
|
||||
<summary>1.1.428.3</summary>
|
||||
<link href="" />
|
||||
<updated>2022-05-15T00:00:00Z</updated>
|
||||
<content type="xhtml">
|
||||
|
|
@ -25,6 +25,7 @@
|
|||
<br/>
|
||||
<ul>
|
||||
<li>Auto Process Task Priorities - Have added task priority droplists to the global settings, allowing the priority for each auto process task to be changed.</li>
|
||||
<li>Player List - adjusted the margin around the border of the players in the player list.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -7,6 +7,29 @@
|
|||
<link href="http://arkservermanager.freeforums.net/" />
|
||||
<updated>2022-05-15T00:00:00Z</updated>
|
||||
|
||||
<entry>
|
||||
<id>urn:uuid:2E2A14AE-EE5B-4384-8143-BF5D1C8A487D</id>
|
||||
<title>1.1.428 (1.1.428.3)</title>
|
||||
<summary>1.1.428.3</summary>
|
||||
<link href="" />
|
||||
<updated>2022-05-15T00:00:00Z</updated>
|
||||
<content type="xhtml">
|
||||
<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, Verdana, Helvetica, Sans-Serif;font-size: .8em;">
|
||||
<p>
|
||||
<u style="font-size: .9em;">CHANGE</u>
|
||||
<br/>
|
||||
<ul>
|
||||
<li>Player List - adjusted the margin around the border of the players in the player list.</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
</content>
|
||||
<author>
|
||||
<name>bletch</name>
|
||||
<email>bletch1971@hotmail.com</email>
|
||||
</author>
|
||||
</entry>
|
||||
|
||||
<entry>
|
||||
<id>urn:uuid:2E2A14AE-EE5B-4384-8143-BF5D1C8A487D</id>
|
||||
<title>1.1.428 (1.1.428.2)</title>
|
||||
|
|
|
|||
|
|
@ -80,7 +80,7 @@
|
|||
</Label>
|
||||
</StackPanel>
|
||||
|
||||
<ListBox DockPanel.Dock="Top" ItemsSource="{Binding ServerPlayers.Players}" BorderBrush="LightGray" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
|
||||
<ListBox DockPanel.Dock="Top" ItemsSource="{Binding ServerPlayers.Players}" BorderBrush="LightGray" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch" Padding="-3,0,-3,0">
|
||||
<ListBox.Resources>
|
||||
<clib:BindingProxy x:Key="proxy" Data="{Binding ElementName=PlayerList}"/>
|
||||
</ListBox.Resources>
|
||||
|
|
@ -106,14 +106,14 @@
|
|||
<Border BorderThickness="2" Padding="1" Style="{DynamicResource PlayerStatus}">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="1*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<StackPanel Grid.Column="1" HorizontalAlignment="Stretch">
|
||||
<StackPanel Grid.Column="0" Margin="5,0,5,0" HorizontalAlignment="Stretch">
|
||||
<Label Padding="0,-1,0,-1" Style="{DynamicResource PlayerName}"/>
|
||||
<StackPanel Orientation="Horizontal" Margin="0" >
|
||||
<StackPanel Orientation="Horizontal" >
|
||||
<Label Content="{Binding CharacterName}" Padding="0,-1,0,-1"/>
|
||||
<TextBlock Text="{Binding PlayerData.Level, StringFormat=({0})}" Margin="5,0,0,0" Padding="0,-1,0,-1" />
|
||||
<TextBlock Text="{Binding PlayerData.Level, StringFormat=({0})}" Margin="5,0,0,0" />
|
||||
</StackPanel>
|
||||
<Label Padding="0,-1,0,-1" Style="{DynamicResource TribeName}"/>
|
||||
</StackPanel>
|
||||
|
|
|
|||
|
|
@ -183,7 +183,7 @@
|
|||
</Label>
|
||||
</StackPanel>
|
||||
|
||||
<ListBox DockPanel.Dock="Top" ItemsSource="{Binding ServerRCON.Players}" BorderBrush="LightGray" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch">
|
||||
<ListBox DockPanel.Dock="Top" ItemsSource="{Binding ServerRCON.Players}" BorderBrush="LightGray" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch" Padding="-3,0,-3,0">
|
||||
<ListBox.Resources>
|
||||
<clib:BindingProxy x:Key="proxy" Data="{Binding ElementName=RCON}"/>
|
||||
</ListBox.Resources>
|
||||
|
|
@ -213,14 +213,14 @@
|
|||
<Border BorderThickness="2" Padding="1" Style="{DynamicResource PlayerStatus}">
|
||||
<Grid>
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="1*"/>
|
||||
<ColumnDefinition Width="*"/>
|
||||
</Grid.ColumnDefinitions>
|
||||
|
||||
<StackPanel Grid.Column="1" HorizontalAlignment="Stretch">
|
||||
<StackPanel Grid.Column="0" Margin="5,0,5,0" HorizontalAlignment="Stretch">
|
||||
<Label Padding="0,-1,0,-1" Style="{DynamicResource PlayerName}"/>
|
||||
<StackPanel Orientation="Horizontal" Margin="0" >
|
||||
<StackPanel Orientation="Horizontal" >
|
||||
<Label Content="{Binding CharacterName}" Padding="0,-1,0,-1"/>
|
||||
<TextBlock Text="{Binding PlayerData.Level, StringFormat=({0})}" Margin="5,0,0,0" Padding="0,-1,0,-1" />
|
||||
<TextBlock Text="{Binding PlayerData.Level, StringFormat=({0})}" Margin="5,0,0,0" />
|
||||
</StackPanel>
|
||||
<Label Padding="0,-1,0,-1" Style="{DynamicResource TribeName}"/>
|
||||
</StackPanel>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue