mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
100 lines
5.6 KiB
XML
100 lines
5.6 KiB
XML
<Window x:Class="ServerManagerTool.GuildProfileWindow"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:cc="clr-namespace:ServerManagerTool.Common.Converters;assembly=ServerManager.Common"
|
|
Width="600" ResizeMode="NoResize" SizeToContent="Height" WindowStartupLocation="CenterOwner" ShowInTaskbar="False"
|
|
Icon="../Art/favicon.ico" Title="{Binding WindowTitle}">
|
|
<Window.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="..\Globalization\en-US\en-US.xaml"/>
|
|
<ResourceDictionary Source="..\Styles\Default.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
<cc:UnixTimeToDateTimeConverter x:Key="UnixTimeToDateTimeConverter"/>
|
|
|
|
<SolidColorBrush x:Key="BeigeBorder" Color="#FFD8CCBC"/>
|
|
<LinearGradientBrush x:Key="BeigeGradient" EndPoint="0.5,1" StartPoint="0.5,0">
|
|
<GradientStop Color="#FFECE1D4" Offset="1"/>
|
|
<GradientStop Color="#FFEAE8E6"/>
|
|
</LinearGradientBrush>
|
|
|
|
<Style x:Key="GroupBoxStyle" TargetType="GroupBox" BasedOn="{StaticResource {x:Type GroupBox}}">
|
|
<Setter Property="BorderBrush" Value="{StaticResource BeigeBorder}"/>
|
|
</Style>
|
|
<Style x:Key="OnlineListViewItemStyle" TargetType="{x:Type ListViewItem}">
|
|
<Style.Triggers>
|
|
<DataTrigger Binding="{Binding IsOnline}" Value="True">
|
|
<Setter Property="Foreground" Value="Green"/>
|
|
<Setter Property="FontWeight" Value="Bold"/>
|
|
</DataTrigger>
|
|
</Style.Triggers>
|
|
</Style>
|
|
</ResourceDictionary>
|
|
</Window.Resources>
|
|
|
|
<Grid Background="{StaticResource BeigeGradient}">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
|
|
<StackPanel Margin="3" CanVerticallyScroll="True" ScrollViewer.VerticalScrollBarVisibility="Auto">
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="Auto"/>
|
|
<ColumnDefinition Width="2*"/>
|
|
<ColumnDefinition Width="Auto"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Grid.Row="0" Grid.Column="0" Content="{DynamicResource Profile_NameLabel}" VerticalAlignment="Center"/>
|
|
<Label Grid.Row="0" Grid.Column="1" Content="{Binding Player.GuildName}" VerticalAlignment="Center" FontWeight="Bold" FontSize="13.333"/>
|
|
</Grid>
|
|
|
|
<GroupBox HorizontalAlignment="Stretch" Style="{StaticResource GroupBoxStyle}">
|
|
<GroupBox.Header>
|
|
<TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" Text="{DynamicResource Profile_TribeSectionLabel}" VerticalAlignment="Center" FontWeight="Bold" FontSize="13.333"/>
|
|
</GroupBox.Header>
|
|
|
|
<Grid>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition/>
|
|
<RowDefinition/>
|
|
</Grid.RowDefinitions>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="1*"/>
|
|
<ColumnDefinition Width="2*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Grid.Row="0" Grid.Column="0" Content="{DynamicResource Profile_IdLabel}"/>
|
|
<Label Grid.Row="0" Grid.Column="1" Content="{Binding GuildData.GuildId}"/>
|
|
<Label Grid.Row="1" Grid.Column="0" Content="{DynamicResource Profile_TribeOwnerLabel}"/>
|
|
<Label Grid.Row="1" Grid.Column="1" Content="{Binding GuildOwner}"/>
|
|
</Grid>
|
|
</GroupBox>
|
|
|
|
<GroupBox HorizontalAlignment="Stretch" Style="{StaticResource GroupBoxStyle}">
|
|
<GroupBox.Header>
|
|
<TextBlock HorizontalAlignment="Left" TextWrapping="Wrap" Text="{DynamicResource Profile_TribeMembersSectionLabel}" VerticalAlignment="Center" FontWeight="Bold" FontSize="13.333"/>
|
|
</GroupBox.Header>
|
|
|
|
<Grid>
|
|
<ListView x:Name="GuildMembersListView" ItemsSource="{Binding GuildPlayers}" Height="200" HorizontalContentAlignment="Stretch" ItemContainerStyle="{DynamicResource OnlineListViewItemStyle}">
|
|
<ListView.View>
|
|
<GridView>
|
|
<GridViewColumn Header="{DynamicResource Profile_CharacterNameColumnLabel}" Width="Auto" DisplayMemberBinding="{Binding PlayerData.CharacterName}"/>
|
|
<GridViewColumn Header="{DynamicResource Profile_LevelColumnLabel}" Width="Auto" DisplayMemberBinding="{Binding PlayerData.Level}"/>
|
|
<GridViewColumn Header="{DynamicResource Profile_OnlineColumnLabel}" Width="Auto" DisplayMemberBinding="{Binding IsOnline}"/>
|
|
<GridViewColumn Header="{DynamicResource Profile_LastOnlineColumnLabel}" Width="Auto" DisplayMemberBinding="{Binding LastOnline, Converter={StaticResource UnixTimeToDateTimeConverter}}"/>
|
|
</GridView>
|
|
</ListView.View>
|
|
</ListView>
|
|
</Grid>
|
|
</GroupBox>
|
|
</StackPanel>
|
|
</Grid>
|
|
</Window>
|