আমি কীভাবে একটি ডাব্লুপিএফ তালিকাভিউয়ের শিরোনামটি আড়াল করতে পারি?
আমি ডাব্লুপিএফ তালিকাভিউতে প্রতিটি গ্রিড কলামের শীর্ষে শিরোনামটি আড়াল করতে সক্ষম হতে চাই। এটি আমার তালিকাভুক্তির জন্য এক্সএএমএল: <Window x:Class="ListViewTest.Test0.ListViewTest" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Empty ListView Grid" Height="216" Width="435" FlowDirection="LeftToRight" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Grid.IsSharedSizeScope="False"> <Window.Resources> <XmlDataProvider x:Key="CustomersDS" Source="C:\data.xml"/> </Window.Resources> <ListView Margin="0,0,0,50" ItemTemplate="{DynamicResource CustomerTemplate}" ItemsSource="{Binding Source={StaticResource CustomersDS}, XPath=/Customers/Customer}"> <ListView.View> <GridView> <GridViewColumn DisplayMemberBinding="{Binding XPath=Code}"/> <GridViewColumn …