2024-08-03 11:49:28 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<Page
|
|
|
|
x:Class="RustTools.Views.ConcernPage"
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
xmlns:local="using:RustTools.Views"
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
2024-08-13 13:59:14 +00:00
|
|
|
xmlns:themes="using:RustTools.Themes"
|
2024-08-03 11:49:28 +00:00
|
|
|
SizeChanged="Page_SizeChanged"
|
|
|
|
mc:Ignorable="d">
|
|
|
|
<Grid>
|
2024-08-13 13:59:14 +00:00
|
|
|
|
|
|
|
<Grid>
|
|
|
|
<TextBlock
|
|
|
|
HorizontalAlignment="Center"
|
|
|
|
Style="{StaticResource BodyStrongTextBlockStyle}"
|
|
|
|
Text="请登陆后使用此功能" />
|
|
|
|
</Grid>
|
|
|
|
<!--<themes:NullPage x:Name="nullpage" Visibility="Visible" />-->
|
|
|
|
<Grid x:Name="gridview" Visibility="Collapsed">
|
|
|
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition MinWidth="56" MaxWidth="320" />
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<StackPanel
|
|
|
|
Margin="0,9,9,9"
|
|
|
|
Padding="9"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<ListView
|
|
|
|
Name="ListViewA"
|
|
|
|
Grid.Column="0"
|
|
|
|
ItemTemplate="{StaticResource ConCernItem}"
|
|
|
|
ItemsSource="{x:Bind ViewModels.communitylist}"
|
|
|
|
Loaded="ListViewA_Loaded"
|
|
|
|
ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden"
|
|
|
|
SelectionChanged="ListViewA_SelectionChanged"
|
|
|
|
SelectionMode="Single" />
|
|
|
|
</StackPanel>
|
|
|
|
<StackPanel
|
|
|
|
Grid.Column="1"
|
|
|
|
Margin="9"
|
|
|
|
Padding="9"
|
|
|
|
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
|
|
|
|
<ListView
|
|
|
|
Name="ListViewB"
|
|
|
|
IsItemClickEnabled="False"
|
|
|
|
ItemTemplate="{StaticResource MovingInfo}"
|
|
|
|
ItemsSource="{x:Bind ViewModels.MovingInfoList}"
|
|
|
|
ScrollViewer.HorizontalScrollBarVisibility="Hidden"
|
|
|
|
ScrollViewer.VerticalScrollBarVisibility="Hidden"
|
|
|
|
SelectionMode="None" />
|
|
|
|
</StackPanel>
|
|
|
|
</Grid>
|
2024-08-03 11:49:28 +00:00
|
|
|
</Grid>
|
|
|
|
</Page>
|