在編碼我用一個ListView和定義的模板,在該級別的資源的WPF應用程序的本地資源:衝突窗口和WPF應用
<ListView IsSynchronizedWithCurrentItem="true" ItemTemplate="{StaticResource CardViewTemplate}">
<!--ItemTemplate="{StaticResource CardViewTemplate}" -->
<ListView.ItemsPanel>
<ItemsPanelTemplate>
<WrapPanel></WrapPanel>
</ItemsPanelTemplate>
</ListView.ItemsPanel>
<ListView.Resources>
<DataTemplate x:Key="CardViewTemplate">
<GroupBox Header="{Binding Path=Product Name}" Width="290" BorderThickness="4" FontSize="14"
FontStyle="Normal" Padding="10" BorderBrush="DarkBlue" Background="{x:Null}" Margin="12"
UseLayoutRounding="True">
<StackPanel Name="stackPanel1">
<WrapPanel Orientation="Vertical" Name="wrapPanel1">
<WrapPanel Orientation="Horizontal">
<TextBlock MinWidth="80" Text="{Binding Path=Product
Name}" FontSize="16" FontWeight="Bold"
TextAlignment="Center" />
</WrapPanel>
</GroupBox>
</DataTemplate>
</ListView.Resources>
</ListView>
這工作完全然而,當我使用的資源(表達黑暗)在窗口級別ListView顯示爲空白。
任何建議,可能是什麼原因?我已經嘗試了所有我能想到
你是什麼意思與「[...]當我在窗位[...]使用資源(表達式暗)」?你有沒有嘗試使用另一個主題?或者你的意思是表達混合與它的黑暗主題? – DHN 2012-02-09 06:11:24