We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<UserControl.Resources> <converters:PathConverter x:Key="PathConverter" />
<DataTemplate x:Key="ListViewItemTemp"> <StackPanel HorizontalAlignment="Center" Orientation="Vertical"> <Image Width="64" Height="64" Source="pack://application:,,,/Resources/folder.jpeg" /> <TextBlock Text="{Binding Converter={StaticResource PathConverter}}" /> </StackPanel> </DataTemplate>
</UserControl.Resources>
The text was updated successfully, but these errors were encountered:
可以这样使用
<ListView Style="{x:Null}"/>
或者
<ListView Style="{StaticResource myStyle}"/>
其中 myStyle 是你定义的ListView样式名称
myStyle
Sorry, something went wrong.
如果还不能解决,可以帖上完整的代码。
No branches or pull requests
<UserControl.Resources>
<converters:PathConverter x:Key="PathConverter" />
</UserControl.Resources>
The text was updated successfully, but these errors were encountered: