WIn_RustTools/RustTools/Views/ConcernPage.xaml

49 lines
1.9 KiB
Plaintext
Raw Normal View History

<?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"
SizeChanged="Page_SizeChanged"
mc:Ignorable="d">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition MinWidth="56" MaxWidth="320" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<StackPanel
Margin="0,9,9,0"
Padding="9"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<ItemsView
Name="ListViewA"
Grid.Column="0"
ItemInvoked="ItemsView_ItemInvoked"
ItemTemplate="{StaticResource ConCernItem}"
ItemsSource="{x:Bind ViewModels.communitylist}"
ScrollViewer.HorizontalScrollBarVisibility="Hidden"
ScrollViewer.VerticalScrollBarVisibility="Hidden" />
</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>
</Page>