Player List Changes

- have adjusted the margin of the border around the players in the list.
This commit is contained in:
Brett Hewitson 2022-05-15 17:06:12 +10:00
parent 61b16d6ab2
commit 0a3d42736e
8 changed files with 73 additions and 25 deletions

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -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>

View file

@ -9,8 +9,8 @@
<entry>
<id>urn:uuid:E367ACB5-E38A-4B3A-A089-E43D011A97E4</id>
<title>1.1.72 (1.1.72.2)</title>
<summary>1.1.72.2</summary>
<title>1.1.72 (1.1.72.3)</title>
<summary>1.1.72.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>

View file

@ -7,6 +7,29 @@
<link href="http://servermanagers.freeforums.net/" />
<updated>2022-05-15T00:00:00Z</updated>
<entry>
<id>urn:uuid:E367ACB5-E38A-4B3A-A089-E43D011A97E4</id>
<title>1.1.72 (1.1.72.3)</title>
<summary>1.1.72.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:E367ACB5-E38A-4B3A-A089-E43D011A97E4</id>
<title>1.1.72 (1.1.72.2)</title>

View file

@ -88,7 +88,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>
@ -111,13 +111,13 @@
<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 Orientation="Horizontal" Margin="0" ToolTip="{Binding PlayerId}">
<StackPanel Grid.Column="0" Margin="5,0,5,0" HorizontalAlignment="Stretch">
<StackPanel Orientation="Horizontal" ToolTip="{Binding PlayerId}">
<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 GuildName}"/>
</StackPanel>

View file

@ -166,8 +166,8 @@
</Label.Style>
</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>
@ -190,13 +190,13 @@
<Border BorderThickness="2" Padding="1" Style="{DynamicResource PlayerStatus}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="1" HorizontalAlignment="Stretch" ToolTip="{Binding PlayerId}">
<StackPanel Orientation="Horizontal" Margin="0" >
<StackPanel Grid.Column="0" Margin="5,0,5,0" HorizontalAlignment="Stretch" ToolTip="{Binding PlayerId}">
<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 GuildName}"/>
</StackPanel>