xaml代码
<Grid>
<ListView>
<ListViewItem HorizontalContentAlignment="Stretch">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="*"/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Image Source="/images/icon.png" Grid.RowSpan="3" Width="80" HorizontalAlignment="Right"/>
<Label Content="测试功能" Grid.Column="1" FontSize="20"/>
<Label Content="功能描述" Grid.Column="1" FontSize="15" Grid.Row="1"/>
<Label Content="版本" Grid.Column="1" FontSize="12" Grid.Row="2"/>
<TextBlock Grid.Column="2" HorizontalAlignment="Right" VerticalAlignment="Center">
<Hyperlink NavigateUri="https://www.helloalong.xyz" Click="Hyperlink_Click">作者主页</Hyperlink>
</TextBlock>
</Grid>
</ListViewItem>
</ListView>
</Grid>
ps 此代码无意义,仅做记录用