active questions tagged styles - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:47:26Z http://stackoverflow.com/feeds/tag/styles http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1050737/wpf-change-a-buttons-content-in-a-style 1 WPF - Change a button's content in a style? Thrash505 2009-06-26T19:12:03Z 2009-12-01T22:09:44Z <p>I'm trying to do something similar to this:</p> <pre><code>&lt;Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"&gt; &lt;Grid&gt; &lt;Button&gt; &lt;Button.Style&gt; &lt;Style TargetType="{x:Type Button}"&gt; &lt;Setter Property="Content" Value="No mouse over" /&gt; &lt;Style.Triggers&gt; &lt;Trigger Property="IsMouseOver" Value="True"&gt; &lt;Setter Property="Content"&gt; &lt;Setter.Value&gt; &lt;CheckBox Content="Mouse is over" /&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Trigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; &lt;/Button.Style&gt; &lt;/Button&gt; &lt;/Grid&gt; &lt;/Window&gt; </code></pre> <p>However, I get a run-time XamlParseException with a message of: </p> <blockquote> <p>Cannot add content of type 'System.Windows.Controls.CheckBox' to an object of type 'System.Object'. Error at object 'System.Windows.Controls.CheckBox</p> </blockquote> <p>I'm actually trying to draw different icons for the button's content depending on external conditions. So I'm actually trying to use a DataTrigger, but the example above simplifies the problem. Any ideas?</p> http://stackoverflow.com/questions/1828626/wpf-catch-the-clicking-of-a-button-that-was-added-to-a-style-listboxitem 0 WPF- Catch the clicking of a button that was added to a style (ListBoxItem) Vaccano 2009-12-01T20:19:56Z 2009-12-01T22:01:23Z <p>I have added a button to a template for a ListBoxItem. I want to know how to catch the click for the button (not selecting the ListboxItem). </p> <p>The button clicks just fine in the UI, but I can't seem to find out how to wire up code so I can catch it.</p> <p>I tried using:</p> <pre><code>&lt;EventSetter Event="Click" Handler="Button_Click"&gt;&lt;/EventSetter&gt; </code></pre> <p>but that seemed to want to be on the ListBoxItem. I could not see a way to wire it up to the button.</p> <p>Here is the syle I am working with incase it helps:</p> <pre><code>&lt;Window x:Class="WIAssistant.Main" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="My App" Height="587" Width="1246" Name="MainForm" FontSize="14"&gt; &lt;Window.Resources&gt; &lt;Style x:Key="CheckBoxListStyle" TargetType="ListBox"&gt; &lt;Style.Resources&gt; &lt;Style TargetType="ListBoxItem"&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="ListBoxItem"&gt; &lt;Grid ScrollViewer.CanContentScroll="True" Margin="2"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="Auto" /&gt; &lt;ColumnDefinition Width="Auto" /&gt; &lt;ColumnDefinition Width="Auto" /&gt; &lt;ColumnDefinition /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;CheckBox VerticalAlignment="Center" IsChecked="{Binding IsSelected, RelativeSource={RelativeSource TemplatedParent}, Mode=TwoWay}" /&gt; &lt;TextBlock VerticalAlignment="Center" Grid.Column="1" Margin="5,0,5,0" Text="{Binding Id}" /&gt; &lt;TextBlock VerticalAlignment="Center" Grid.Column="2" Margin="5,0,5,0" Text="{Binding Title}" /&gt; &lt;Button HorizontalAlignment="Right" Grid.Column="3" Margin="5,0,5,0" Width="25"&gt;-&amp;gt;&lt;/Button&gt; &lt;/Grid&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;/Style.Resources&gt; &lt;Setter Property="ItemsPanel"&gt; &lt;Setter.Value&gt; &lt;ItemsPanelTemplate&gt; &lt;WrapPanel Orientation="Vertical" /&gt; &lt;/ItemsPanelTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;Setter Property="BorderThickness" Value="0" /&gt; &lt;Setter Property="Background" Value="Transparent" /&gt; &lt;/Style&gt; &lt;/Window.Resources&gt; ... (In a grid in later code) &lt;ListBox SelectionMode="Multiple" Style="{StaticResource CheckBoxListStyle}" Name="lstQueryResults" SelectionChanged="lstQueryResults_SelectionChanged"&gt; &lt;/ListBox&gt; </code></pre> <p>Any way to capture the click for the button would be appreciated. (Note, just adding a click event to the button gives an error saying to use an <code>EventSetter</code>.</p> http://stackoverflow.com/questions/1815626/adobe-flex-progress-bar-for-loadstyledeclarations 0 Adobe Flex Progress Bar for LoadStyleDeclarations Max 2009-11-29T14:11:51Z 2009-11-29T16:49:37Z <p>I'm loading a rather large swf as style with the following command:</p> <pre><code>StyleManager.loadStyleDeclarations("assets/modules/"style.swf",true,false,ApplicationDomain.currentDomain); </code></pre> <p>The style is loaded fine but now I would like to add a progress bar to it, but I do not know how to do so. I am rather new to Flex and found only examples referring to HTML service calls.</p> <p>Thank You for Your Help. It would be great to receive a small code example.</p> http://stackoverflow.com/questions/1123601/wpf-resize-parent-container-when-childs-controltemplate-changes 0 WPF: resize parent container when child's ControlTemplate changes aku 2009-07-14T05:34:41Z 2009-11-26T19:00:03Z <p>I have a custom error template for my TextBox. Something like this:</p> <pre><code>&lt;Style TargetType="{x:Type TextBox}" x:Key="ErrorTemplateStyle"&gt; &lt;Setter Property="Validation.ErrorTemplate"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate&gt; &lt;StackPanel Orientation="Vertical"&gt; &lt;Border BorderBrush="Orange" BorderThickness="1"&gt; &lt;AdornedElementPlaceholder /&gt; &lt;/Border&gt; &lt;TextBlock Text="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors).CurrentItem}" /&gt; &lt;/StackPanel&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p>My TextBox is placed inside of DataGrid's cell. Now when error occurs I want size of that cell to be changed to accomodate new template for my TextBox. Any ideas how this behavior can be achieved?</p> http://stackoverflow.com/questions/1799974/elegantly-override-style-of-comboboxs-togglebutton-in-wpf 0 Elegantly override style of ComboBox's ToggleButton in WPF Stu 2009-11-25T21:11:31Z 2009-11-25T21:11:31Z <p>I have a question regarding how to elegantly override an arbitrary element deep inside a control's visual tree. I also have attempted to resolve it in a few different ways, but I've run into several problems with each. Usually when I try three different paths and fail at each one I go downstairs, have a coffee, and ask someone smarter than myself. So here I am.</p> <p>Specifics:</p> <p>I want to flatten the style of a combo box so that it will not draw attention to itself. I want it to be similar to Windows.Forms.ComboBox's FlatStyle I want it to look the same on Windows 7 and XP. </p> <p>Mainly, I want to change the look of a ComboBox's ToggleButton.</p> <p>I could just use Blend and rip the control template's guts out and manually change them. That doesn't sound very appetizing to me.</p> <p>I tried using a style to override the ToggleButton's background, but it turns out that the whole ComboBox control is actually a front for a ToggleButton. </p> <pre><code>&lt;Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Class="ComboBoxExpiriment2.MainWindow" x:Name="Window" xmlns:Microsoft_Windows_Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Classic" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" Title="MainWindow" Width="204" Height="103"&gt; &lt;Grid x:Name="LayoutRoot"&gt; &lt;ComboBox HorizontalAlignment="Left" Margin="32,26.723,0,0" Width="120" VerticalAlignment="Top" Height="21.277"&gt; &lt;ComboBox.Style&gt; &lt;Style&gt; &lt;Setter Property="ToggleButton.Background" Value="Green" /&gt; &lt;/Style&gt; &lt;/ComboBox.Style&gt; &lt;/ComboBox&gt; &lt;/Grid&gt; </code></pre> <p></p> <p>So I gave up and ripped it using Blend. I found that it's actually a Style called ComboBoxTransparentButtonStyle with a target type of ToggleButton. The style sets a ControlTemplate that uses a DockPanel that has a "Microsoft_Windows_Themes:ClassicBorderDecorator" type set to the right, and <em>that's</em> what we're actually trying to control. (Are you with me so far?)<br> Here's the pic:</p> <p><a href="http://img256.imageshack.us/img256/2077/comboboxbackground2.png" rel="nofollow">http://img256.imageshack.us/img256/2077/comboboxbackground2.png</a></p> <pre><code>&lt;Style x:Key="ComboBoxTransparentButtonStyle" TargetType="{x:Type ToggleButton}"&gt; &lt;Setter Property="MinWidth" Value="0"/&gt; &lt;Setter Property="MinHeight" Value="0"/&gt; &lt;Setter Property="Width" Value="Auto"/&gt; &lt;Setter Property="Height" Value="Auto"/&gt; &lt;Setter Property="Background" Value="Transparent"/&gt; &lt;Setter Property="BorderBrush" Value="{x:Static Microsoft_Windows_Themes:ClassicBorderDecorator.ClassicBorderBrush}"/&gt; &lt;Setter Property="BorderThickness" Value="2"/&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type ToggleButton}"&gt; &lt;DockPanel SnapsToDevicePixels="true" Background="{TemplateBinding Background}" LastChildFill="false"&gt; &lt;Microsoft_Windows_Themes:ClassicBorderDecorator x:Name="Border" Width="{DynamicResource {x:Static SystemParameters.VerticalScrollBarWidthKey}}" DockPanel.Dock="Right" Background="Green" BorderBrush="{TemplateBinding BorderBrush}" BorderStyle="None" BorderThickness="{TemplateBinding BorderThickness}"&gt; &lt;Path Fill="{TemplateBinding Foreground}" HorizontalAlignment="Center" VerticalAlignment="Center" Data="{StaticResource DownArrowGeometry}"/&gt; &lt;/Microsoft_Windows_Themes:ClassicBorderDecorator&gt; &lt;/DockPanel&gt; &lt;ControlTemplate.Triggers&gt; &lt;Trigger Property="IsChecked" Value="true"&gt; &lt;Setter Property="BorderStyle" TargetName="Border" Value="AltPressed"/&gt; &lt;/Trigger&gt; &lt;/ControlTemplate.Triggers&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;Style.Triggers&gt; &lt;Trigger Property="IsEnabled" Value="false"&gt; &lt;Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlDarkBrushKey}}"/&gt; &lt;/Trigger&gt; &lt;/Style.Triggers&gt; &lt;/Style&gt; </code></pre> <p>Arg. Isn't WPF a blast?</p> <p>So I extracted the style ComboBoxTransparentButtonStyle and dropped it into another project's application.resources. Problem is I can't apply that style to a ComboBox because the style I extracted has a targetType of ToggleButton, so the TargeTypes don't match.</p> <p>tl;dr how would you guys do it?</p> http://stackoverflow.com/questions/1786031/applying-a-fontfamily-to-all-controls-in-silverlight-4-beta 1 Applying a FontFamily to all Controls in Silverlight 4 Beta David Brown 2009-11-23T21:17:40Z 2009-11-24T23:17:37Z <p>I'd like to give every <code>Control</code> a certain <code>FontFamily</code> and <code>FontWeight</code> in Silverlight 4.0. I know that styles can now apply to all controls of a certain type, so I tried this:</p> <pre><code>&lt;Style TargetType="Control"&gt; &lt;Setter Property="FontFamily" Value="Arial" /&gt; &lt;Setter Property="FontWeight" Value="Bold" /&gt; &lt;/Style&gt; </code></pre> <p>Unfortunately, that doesn't appear to work. I can do this for types that derive from <code>Control</code>, however. For example, setting <code>TargetType</code> to <code>Button</code> applies those values to every <code>Button</code> in my application.</p> <p>Why can't I do this for the <code>Control</code> base class, then?</p> http://stackoverflow.com/questions/1783005/how-can-i-change-styles-of-xaml-file-using-data-binding 1 How can I change styles of XAML file using Data Binding? kyle 2009-11-23T12:56:16Z 2009-11-23T13:06:57Z <p>I'm binding a collection of objects to a listbox in WPF, for simplicity we'll say the object i'm binding has 3 propertys: Name, URL, IsBold. What I want to do, is have it displayed different if the IsBold is set to true, again as an example I want to set the TextBlock that Name appears in, to be bold. Is something like this even possible? Can I use a different style or something if one of my properties is a certain value? (can I do anything like an if/else in XAML)? I really have no idea where to start with this.</p> <p>Say I have this in my DataTemplate</p> <pre><code>&lt;TextBlock Style="{StaticResource notBold}" Text="{Binding Path=Name}"&gt;&lt;/TextBlock&gt; </code></pre> <p>And if the IsBold is set to true for that particular Item I would like it to be (notice the style changes from 'notBold' to 'isBold')</p> <pre><code>&lt;TextBlock Style="{StaticResource isBold}" Text="{Binding Path=Name}"&gt;&lt;/TextBlock&gt; </code></pre> <p>Or something similar. I guess the more general question. Is it possible to change the apperance of something based on an item that's databound? And if it's not possible, how would something like this be done? Thru the code-behind somehow?</p> <p>Thanks</p> http://stackoverflow.com/questions/1762612/create-reusable-chart-style-in-reporting-services 0 Create reusable chart style in reporting services Michael 2009-11-19T11:16:41Z 2009-11-23T10:05:23Z <p>I would like to be able to change the formatting of groups of reports separately from the content of the report itself. Then if we decide to change the way we present our reports this can be changed in one central style type sheet or something similar. Is this easy to do? Is reporting services capable of this or am I using the wrong tool? Thanks</p> http://stackoverflow.com/questions/1601682/silverlight-3-style-composition 0 silverlight 3 style composition Klay 2009-10-21T15:36:52Z 2009-11-22T16:29:44Z <p>I haven't been able to find a simple, straightforward answer regarding this scenario, so I thought I'd try here.</p> <p>In WPF, you can so something like this:</p> <pre><code>&lt;Style x:Key="headerBlock" TargetType="{x:Type StackPanel}"&gt; </code></pre> <p> </p> <p>The idea here is to avoid setting the Style property on every TextBlock inside the StackPanel. Instead, I can set the StackPanel's Style to "headerBlock" and have every TextBlock take on the style specified above.</p> <p>This won' work in Silverlight, however, because Styles do not have Resource properties. I'd rather not have to create a UserControl just to get this functionality, because I can see running into this same scenario many times in an app, and I don't want a ton of UserControls whose purpose is only to cascade styles.</p> <p>Is there a way to accomplish something like the above in Silverlight 3?</p> http://stackoverflow.com/questions/1770935/wpf-style-basedon-current 0 WPF style basedon current adrianm 2009-11-20T14:51:43Z 2009-11-21T14:38:46Z <p>Is there a way to create a style that extends the current style, i.e. not a specific style?</p> <p>I have a WPF application where I create styles to set some properties like borders or validation.</p> <pre><code> &lt;Style TargetType="{x:Type Button}" BasedOn="{StaticResource {x:Type Button}}"&gt; &lt;Setter Property="Padding" Value="5,2,5,2"/&gt; &lt;/Style&gt; </code></pre> <p>Now I want to try out some Themes to see which one works best for my application. Problem is that to do that I need to change the BasedOn property on all my Styles to the style in the Theme.</p> <pre><code> &lt;Style TargetType="{x:Type Button}" BasedOn="="{x:Static ns:SomeTheme.ButtonStyle}"&gt;"&gt; &lt;Setter Property="Padding" Value="5,2,5,2"/&gt; &lt;/Style&gt; </code></pre> <p>I can do it via search/replace but it would be nice if it could be done dynamicly.</p> http://stackoverflow.com/questions/1769370/android-theme-customization 0 Android theme customization Jayesh 2009-11-20T09:37:08Z 2009-11-20T09:37:08Z <p>Hi,</p> <p>I am working on theme-ing my android app. After I went through 'Styles and Themes' in Android SDK and this <a href="http://brainflush.wordpress.com/2009/03/15/understanding-android-themes-and-styles/" rel="nofollow">article</a>, I am still left with one question. </p> <p>Simply put, how can I use android:textSize to be 14 dip for one TextView, while 18 dip for another TextView, inside a Theme?</p> <p>I know how to do this with styles. I can define two different styles and make the two different TextViews to use those styles.</p> <p>What I find difficult is how to do this with Theme. A theme lets me define let's say android:textSize, but then it's applicable to all the TextView s in all the layouts of the Activity. </p> <p>Any idea how to do that?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1689417/wpf-style-hierarchy 0 WPF Style Hierarchy? jrista 2009-11-06T18:29:12Z 2009-11-13T15:37:17Z <p>I may have missed something obvious with WPF, but is it possible to create styles that work hierarchically with the targeted control's child controls? To better explain, think of how CSS works to style HTML. You can hierarchically target controls with CSS via selectors:</p> <pre><code>div &gt; span em { color: blue; } ul.class &gt; li ul li { display: block; margin: 0px; } </code></pre> <p>Is it possible to achieve the same thing with WPF styles? So far, I have been creating styles for every type of control, or named styles that I directly apply to a control. However, I end up with a hell of a lot more styles than I really intend, and I is nearly impossible to style control structures together as a group.</p> <p>Thanks for any insight.</p> <p>UPDATE:</p> <p>Here is an example of what I would like to be able to do. Note that only the root ListView control has a Style applied. I would like to be able to target any one of the child controls in any one of the CellTemplates without having to directly apply the style to each of those child controls. This keeps my view layout markup more decoupled and isolated from the style markup, giving me a lot more freedom to change the style without having to explicitly create a style for every single control in my entire application.</p> <pre><code>&lt;Grid&gt; &lt;ListView Style="{StaticResource ProcessableItemsListView}"&gt; &lt;ListView.View&gt; &lt;GridView&gt; &lt;GridViewColumn Width="10"&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;Grid&gt; &lt;CheckBox Value="{Binging ...}" /&gt; &lt;/Grid&gt; &lt;/GridViewColumn.CellTemplate&gt; &lt;/GridViewColumn&gt; &lt;GridViewColumn Width="*"&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;Grid&gt; &lt;TextBlock Text="{Binding ...}" /&gt; &lt;/Grid&gt; &lt;/GridViewColumn.CellTemplate&gt; &lt;/GridViewColumn&gt; &lt;GridViewColumn Width="80"&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;Grid&gt; &lt;Button Command="{Binding ...}"&gt;Process&lt;/Button&gt; &lt;/Grid&gt; &lt;/GridViewColumn.CellTemplate&gt; &lt;/GridViewColumn&gt; &lt;GridViewColumn Width="120"&gt; &lt;GridViewColumn.CellTemplate&gt; &lt;Grid&gt; &lt;ProgressBar Value="{Binding ...}" /&gt; &lt;/Grid&gt; &lt;/GridViewColumn.CellTemplate&gt; &lt;/GridViewColumn&gt; &lt;/GridView&gt; &lt;/ListView.View&gt; &lt;/ListBiew&gt; &lt;/Grid&gt; </code></pre> http://stackoverflow.com/questions/1726073/is-it-something-bad-to-use-br 3 Is it something bad to use <BR />? pencilcake 2009-11-12T23:15:18Z 2009-11-13T01:20:08Z <p>Hi,</p> <p>Is it something bad to use <code>&lt;BR/&gt;</code> tags? Why I ask this is, in our development team it was one of the first advices to me not use <code>&lt;BR/&gt;</code> but to use styles. </p> <p>But why? Are there some negative outcomes to use <code>&lt;BR/&gt;</code> tags?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1725283/frameworkelementfactory-ignores-parent-resources-e-g-styles 0 FrameworkElementFactory "ignores" parent resources (e.g. styles) Christian 2009-11-12T20:49:59Z 2009-11-12T20:49:59Z <p>Hello,</p> <p>I am trying to create some custom treeviews. Everything is working fine so far, but I got a little problem with styles. I have a simple "RedBackground" Style which I add to the resources of the Window. When adding normal elements, it works fine. </p> <p>When using a custom item template to render treeview items, my resource is ignored. If I add the resource directly to the template it works fine (as marked in code)...</p> <p>I obviously do not want to have to add styles to the ItemTemplate direclty, would be very complicated in further development. I think I am missing some kind of "Binding" or "Lookup"... I think it is related to dependency properties... Or something in this direction. </p> <p>Perhaps anyone has more insights, here is the code creating the template (inside util class, but thats just to keep all clean):</p> <pre><code> var hdt = new HierarchicalDataTemplate(t) { ItemsSource = new Binding("Children") }; var tb = new FrameworkElementFactory(typeof (TextBlock)); tb.SetBinding(TextBlock.TextProperty, new Binding("Header")); hdt.VisualTree = tb; // This way it works... TextBlockStyles.AddRedBackground(hdt.Resources); return hdt; </code></pre> <p>And here my very simple custom tree view</p> <pre><code> public class TreeViewCustom&lt;T&gt; : TreeView { public TreeViewCustom() { MinWidth = 300; MinHeight = 600; ItemTemplate = TreeViewTemplates.TryGetTemplate(typeof(T)); // This is ignored.... (Also when set as resource to window) TextBlockStyles.AddRedBackground(Resources); } } </code></pre> <p>Ok, and to be sure, here the code which creates the Style:</p> <pre><code>public static class TextBlockStyles { public static void AddRedBackground(ResourceDictionary r) { var s = CreateRedBackground(); r.Add(s.TargetType, s); } private static Style CreateRedBackground() { var s = new Style(typeof(TextBlock)); s.Setters.Add(new Setter { Property = TextBlock.BackgroundProperty, Value = new SolidColorBrush(Colors.Red) }); return s; } } </code></pre> <p>Thanks for any tips... Chris</p> http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers 17 What is the easiest or fastest way to make CSS render the same in all browsers nicudotro 2008-09-17T16:13:01Z 2009-11-11T14:26:38Z <p>Making a web page display correctly im all major browsers today is a very time consuming task.</p> <p>Is there a easy way to make a CSS style that looks identical in every browser? Or at least do you have some tips to make this work easier?</p> http://stackoverflow.com/questions/1691693/wpf-listview-header-styling 0 WPF ListView : Header styling federubin 2009-11-07T02:02:50Z 2009-11-10T01:59:43Z <p>I want to have a ListView with columns and a particular style: </p> <p>The background for ALL column headers should be transparent except when the mouse is over in one of them.</p> <p>When this happends, the column's background in which the mouse is over should be yellow and all the color in the other columns should be, let's say, blue.</p> <p>I've tried playing with GridViewColumnHeader template, but that seems to change only the active column background. Any help?</p> http://stackoverflow.com/questions/517279/wpf-c-change-the-brush-of-a-menus-background 1 WPF C# - Change the brush of a menu's background thrash505 2009-02-05T18:38:40Z 2009-11-09T06:42:05Z <p>Does anyone know how to change the brush for a menu's background? This sounds simple, but I don't see any obvious way to do this. You'd think that the Background property would change it, but it doesn't.</p> <p>Here's what my menu looks like (notice the default white background):</p> <p><a href="http://img.photobucket.com/albums/v134/Underworld1020/MISC/menu.png" rel="nofollow"><strong>Example Image</strong></a></p> <p><strong>Example Code:</strong> </p> <pre><code>&lt;Window.Resources&gt; &lt;SolidColorBrush x:Key="menuItemBrush" Color="#FF505050" /&gt; &lt;/Window.Resources&gt; &lt;Grid x:Name="mainGrid" Background="#FF252525"&gt; &lt;Menu x:Name="mainMenu" Background="{DynamicResource menuItemBrush}" Grid.ColumnSpan="2" VerticalAlignment="Top"&gt; &lt;MenuItem x:Name="fileMenu" Background="{DynamicResource menuItemBrush}" Foreground="White" Header="File"&gt; &lt;MenuItem x:Name="fileOpenMenuItem" Background="{DynamicResource menuItemBrush}" Foreground="White" Header="Open..." /&gt; &lt;MenuItem x:Name="fileSaveMenuItem" Background="{DynamicResource menuItemBrush}" Foreground="White" Header="Save" /&gt; &lt;MenuItem x:Name="fileSaveAsMenuItem" Background="{DynamicResource menuItemBrush}" Foreground="White" Header="Save As..." /&gt; &lt;Separator Style="{DynamicResource menuItemSeperator}" /&gt; &lt;MenuItem x:Name="fileExitMenuItem" Background="{DynamicResource menuItemBrush}" Foreground="White" Header="Exit" /&gt; &lt;/MenuItem&gt; &lt;/Menu&gt; &lt;/Grid&gt; </code></pre> <p></p> http://stackoverflow.com/questions/1675937/eclipse-doesnt-recognize-style-in-the-android-layout-builder 0 Eclipse doesn’t recognize style in the Android Layout builder? Artem Russakovskii 2009-11-04T19:06:47Z 2009-11-06T21:42:57Z <p>Since Android supports <a href="http://developer.android.com/guide/topics/ui/themes.html" rel="nofollow">styles</a> and it's good practice to use them (similar to CSS), I made a new style and applied it to 3 buttons.</p> <p>The Layout builder in Eclipse did not register the changes and either broke (showed nothing) or didn't apply styles at all.</p> <p>After running the app in the emulator, styles are correctly applied.</p> <p>So is there something I'm missing or the Android plugin doesn't support styles?</p> http://stackoverflow.com/questions/1665379/asp-net-theme-not-applying-to-one-page 0 ASP.Net Theme not applying to one page. Orion Adrian 2009-11-03T05:19:57Z 2009-11-03T15:15:49Z <p>I have an ASP.Net site and one page will not load the ASP.Net themes even though it works for everything else. It's in the same directory as other pages that work. It uses the same master page as working pages. But for some reason it's not emitting the <code>&lt;link&gt;</code> element for the style.</p> <p>Paging is not disabled on the page, and it is enabled across the entire site where it works correctly.</p> <p>The page isn't incorrect because of a caching issue. I've burned both the site cache and the browser cache and cycled the AppPool involved.</p> http://stackoverflow.com/questions/1664658/datatemplates-in-resource-dictionaries-dont-inherit-from-app-xaml-styles 0 DataTemplates in resource dictionaries don't inherit from app.xaml styles?? Shimmy 2009-11-03T01:12:09Z 2009-11-03T03:27:45Z <p>I added custom named styles to the app.xaml.</p> <p>I created an external resource dictionary (which I attach in the merged dictionaries of the app.xaml) and when I try to use one of the above named styles in the rcource dictionary, it says that there is no such style.</p> <p>Also the default styles (i.e. unnamed styles that apply for the entire application) don't apply on the template elements.</p> <p><em>Note: The Build Action of the templates is 'Page'.</em></p> <p><hr /></p> <p>Here is an example of how my code is written:</p> <pre><code>&lt;Application x:Class="Application" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" ShutdownMode="OnExplicitShutdown"&gt; &lt;Application.Resources&gt; &lt;ResourceDictionary&gt; &lt;Style x:Key="StackPanelStyle" TargetType="StackPanel" BasedOn="{StaticResource {x:Type StackPanel}}"&gt; &lt;Setter Property="Margin" Value="5"/&gt; &lt;Setter Property="Orientation" Value="Horizontal" /&gt; &lt;Setter Property="Height" Value="40"/&gt; &lt;/Style&gt; &lt;ResourceDictionary.MergedDictionaries&gt; &lt;ResourceDictionary Source="/Templates/DataTemplate1.xaml"/&gt; &lt;ResourceDictionary Source="/Templates/DataTemplate2.xaml"/&gt; &lt;ResourceDictionary Source="/Templates/DataTemplate3.xaml"/&gt; &lt;/ResourceDictionary.MergedDictionaries&gt; &lt;/ResourceDictionary&gt; &lt;/Application.Resources&gt; &lt;/Application&gt; </code></pre> <p><hr /></p> <p>This an example of the data template: </p> <pre><code>&lt;DataTemplate DataType="{x:Type Entity}" x:Key="NameDataTemplate"&gt; &lt;Expander&gt; &lt;StackPanel&gt; &lt;--The following line produces: StackPanelStyle was not found.--&gt; &lt;StackPanel Style="{StaticResource StackPanelStyle}"&gt; &lt;Label Content="Name:"/&gt; &lt;TextBox Text="{Binding Name}"/&gt; &lt;/StackPanel&gt; &lt;/StackPanel&gt; &lt;/Expander&gt; &lt;/DataTemplate&gt; </code></pre> <p>Any ideas? Do I have to merge the dictionaries in a different way?</p> http://stackoverflow.com/questions/1662647/where-to-find-generic-xaml-for-native-wpf-controls 2 Where to find Generic.xaml for native WPF controls? Gustavo Cavalcanti 2009-11-02T17:40:44Z 2009-11-02T17:55:40Z <p>Where to find Generic.xaml (or other code with the default look) for native WPF controls such as Button, CheckBox, TextBox, etc?</p> http://stackoverflow.com/questions/1662353/design-time-resourcedictionaries 0 Design-Time Resourcedictionaries Nils 2009-11-02T16:40:41Z 2009-11-02T17:09:32Z <p>I have created something like <a href="http://stackoverflow.com/questions/946869/is-it-possible-to-share-a-resourcedictionary-file-between-multiple-projects">this</a> and <a href="http://stackoverflow.com/questions/1219141/how-to-style-a-xaml-window-with-a-resourcedictionary-that-exist-in-a-dll">this</a>.<br /> In effect I have a dll which supplies me with a "styler" for my application - it contains all my basic styles as well as a factory to call <code>StylerFactory.DefaultStyler.ApplyStyles(this)</code> on an Application - which merges the supplied ResourceDictionaries with the existing. This way I don't need all the basic styles in my components, nor do I need explicit references to my sesource-xaml-files.<br /> Now - while this is working real good. The Styles are (obviously) not visible during design-time To my questions:</p> <ol> <li>Was that approach wise, or would it have been better to deploy xaml-resources and use them in every app/window/control ?</li> <li>Does someone see any possibility to apply my styles to the design-time display of VS2008 ?</li> </ol> http://stackoverflow.com/questions/1655973/default-image-style 0 Default Image Style Brad 2009-10-31T23:58:53Z 2009-11-01T16:16:29Z <p>It was my understanding that this:</p> <pre><code>&lt;Style TargetType="{x:Type Image}"&gt; &lt;Setter Property="Margin" Value="0"/&gt; &lt;Setter Property="Stretch" Value="None"/&gt; &lt;Setter Property="HorizontalAlignment" Value="Center"/&gt; &lt;Setter Property="VerticalAlignment" Value="Center"/&gt; &lt;Setter Property="Cursor" Value="Help"/&gt; &lt;/Style&gt; </code></pre> <p>would change the default image settings for each image rendered on the Window. Is this not the case? Is there an exception for images as it appears to work with other controls?</p> <p>TIA</p> http://stackoverflow.com/questions/1230891/ie7-floated-image-disappears 1 IE7 - Floated Image Disappears! Richard Knop 2009-08-05T02:28:40Z 2009-10-31T22:46:23Z <p>Ok. Here's the situation. I am styling a comments section on one of my websites. Here's an example markup:</p> <pre><code> &lt;ol class="comments"&gt; &lt;li&gt; &lt;a href="/view/profile/id/2"&gt; &lt;img src="/images/photo-thumb.gif" alt="johndoe" /&gt; &lt;/a&gt; &lt;p class="pad-top"&gt;&lt;em&gt;written on Sunday 2nd of August 2009 12:12:54 AM by &lt;a href="/view/profile/id/2" class="blue"&gt;johndoe&lt;/a&gt;&lt;/em&gt;&lt;/p&gt; &lt;p class="pad-top pad-bottom"&gt;One more comment :D:D:D&lt;/p&gt; &lt;div class="clear"&gt;&lt;/div&gt; &lt;/li&gt; &lt;li&gt; &lt;a href="/view/profile/id/2"&gt; &lt;img src="/images/photo-thumb.gif" alt="johndoe" /&gt; &lt;/a&gt; &lt;p class="pad-top"&gt;&lt;em&gt;written on Thursday 30th of July 2009 02:59:48 AM by &lt;a href="/view/profile/id/2" class="blue"&gt;johndoe&lt;/a&gt;&lt;/em&gt;&lt;/p&gt; &lt;p class="pad-top pad-bottom"&gt;Testing comments lalala&lt;br /&gt; &lt;br /&gt; Testing comments lalala&lt;br /&gt; &lt;br /&gt; Testing comments lalala&lt;/p&gt; &lt;div class="clear"&gt;&lt;/div&gt; &lt;/li&gt; &lt;/ol&gt; </code></pre> <p>And here is how I'm styling it:</p> <pre><code>.comments li { margin-top: 1em; padding: 0 1em; background: #3a3a3a; } .comments img { float: left; margin: 1em 1em 1em 0; border: 1px solid #4f5055; } .clear { clear: both; } .pad-top { padding-top: 1em; } .pad-bottom { padding-bottom: 1em; } </code></pre> <p>Everything works great in all browsers except IE7 where the floated image disappears. To demonstrate, here is how it looks in IE8, Firefox etc (that's how it's supposed to look):</p> <p><a href="http://richardknop.com/pic2.gif" rel="nofollow">http://richardknop.com/pic2.gif</a></p> <p>And here is how it looks in IE7:</p> <p><a href="http://richardknop.com/pic1.gif" rel="nofollow">http://richardknop.com/pic1.gif</a></p> <p>Anybody knows how to fix this? I have already tried floating the anchor instead and many other tricks but I can't get it to work correctly in IE7.</p> http://stackoverflow.com/questions/1593523/dependency-property-not-working-trying-to-set-through-style-setter 0 Dependency property not working, trying to set through style setter. Kohan 2009-10-20T09:44:30Z 2009-10-26T10:58:16Z <p>I am trying to set up a custom style for my newly made usercontrol, however i am getting the error : "Cannot convert the value in attribute 'Property' to object of type 'System.Windows.DependencyProperty'."</p> <p>I thought i had set up Dependency properties but it seemed this was not the case, so i did some research and added:</p> <pre><code> public static readonly DependencyProperty ImageSourceProperty = DependencyProperty.Register("ImageSource", typeof(BitmapSource), typeof(Image)); </code></pre> <p>to make this: -- MyButton.Xaml.Cs --</p> <pre><code> namespace Client.Usercontrols { public partial class MyButton : UserControl { public static readonly DependencyProperty ImageSourceProperty = DependencyProperty.Register("ImageSource", typeof(BitmapSource), typeof(Image)); public MyButton() { InitializeComponent(); } public event RoutedEventHandler Click; void onButtonClick(object sender, RoutedEventArgs e) { if (this.Click != null) this.Click(this, e); } BitmapSource _imageSource; public BitmapSource ImageSource { get { return _imageSource; } set { _imageSource = value; tehImage.Source = _imageSource; } } } } </code></pre> <p>This unfortunately does not work. I also tried this:</p> <pre><code>public BitmapSource ImageSource { get { return (BitmapSource)GetValue(MyButton.ImageSourceProperty); } set { SetValue(ImageSourceProperty, value); } } </code></pre> <p>But that did not work and the image was not shown and generated the same error as mentioned previously anyway.</p> <p>Any ideas? Regards Kohan.</p> <p>-- MyButton.Xaml --</p> <pre><code>&lt;UserControl x:Class="Client.Usercontrols.MyButton" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" MinHeight="30" MinWidth="40" DataContext="{Binding RelativeSource={RelativeSource Self}}"&gt; &lt;Button Width="Auto" HorizontalAlignment="Center" Click="onButtonClick"&gt; &lt;Border CornerRadius="5" BorderThickness="1" BorderBrush="Transparent" &gt; &lt;Grid&gt; &lt;Image Name="tehImage" Source="{Binding ImageSource}" /&gt; &lt;TextBlock Name="tehText" Text="{Binding Text}" Style="{DynamicResource ButtonText}" /&gt; &lt;/Grid&gt; &lt;/Border&gt; &lt;/Button&gt; &lt;/UserControl&gt; </code></pre> <p>-- MYButton Style --</p> <pre><code>&lt;Style TargetType="{x:Type my:MyButton}" &gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type my:MyButton}"&gt; &lt;ContentPresenter /&gt; &lt;ControlTemplate.Triggers&gt; &lt;Trigger Property="IsEnabled" Value="false"&gt; &lt;Setter Property="ImageSource" Value="../Images/Disabled.png" /&gt; &lt;/Trigger&gt; &lt;/ControlTemplate.Triggers&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> http://stackoverflow.com/questions/1603179/need-themes-for-the-wpf-toolkit-controls-espeically-datagrid 0 Need themes for the WPF Toolkit controls (espeically DataGrid) DanThMan 2009-10-21T19:50:36Z 2009-10-23T17:55:10Z <p>I just downloaded the nice themes collection from the <a href="http://wpf.codeplex.com/wikipage?title=WPF%20Themes" rel="nofollow">Codeplex WPF Themes site</a>. I like the WhisterBlue and BureauBlue themes a lot, but neither contain any styles for the new controls included in the <a href="http://wpf.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=29117" rel="nofollow">WPF Toolkit</a> (<code>DataGrid</code>, <code>DatePicker</code>, and <code>Calendar</code>).</p> <p>It seems like <em>someone</em> out there must have extended the themes to cover these controls, but I've had no luck finding them. So, if you have any leads, I'd love to hear them.</p> <p>I should also mention that I've been trying to port a Silverlight version of the BureauBlue <code>DataGrid</code> theme to WPF (see: <a href="http://stackoverflow.com/questions/1611135/how-do-you-port-a-theme-from-silverlight-to-wpf">http://stackoverflow.com/questions/1611135/how-do-you-port-a-theme-from-silverlight-to-wpf</a>), but that has been quite unsuccessful so far.</p> http://stackoverflow.com/questions/1568589/need-help-with-a-custom-style-in-wpf 1 Need help with a custom Style in WPF DanThMan 2009-10-14T19:53:41Z 2009-10-18T16:58:44Z <p>I'm attempting to build some simple custom styles for the WPF Toolkit <code>DataGrid</code> control.</p> <p>I have a style for the overall <code>DataGrid</code> and a style for the <code>DataGridColumnHeader</code>. I am not setting any control templates, only basic properties.</p> <p><strong>Here is what my sample DataGrid looks like with my custom styling applied:</strong></p> <p><img src="http://img86.imageshack.us/img86/43/datagridcustomstyle.jpg" alt="alt text" /></p> <p>The header has the gradient blue background, bold text, padding, etc. I want, but two things have disappeared: the separators between the column headers and the sort arrow for the ID column (this column currently has a descending sort on it).</p> <p>Why would the separators and sort arrow disappear if I have not messed with any control templates?</p> <p>I even tried explicitly setting the <code>SeparatorBrush</code> to <code>Black</code> and the <code>SeparatorVisibility</code> to <code>Visible</code>, but this had no effect.</p> <p><strong>Here is what my sample DataGrid looks like if I revert back to the default styling:</strong></p> <p><img src="http://img42.imageshack.us/img42/6533/datagriddefaultstyle.jpg" alt="alt text" /></p> <p>The separators and sort arrow are back, so it is definitely my style that is making the difference.</p> <p><strong>Here is my custom DataGridColumnHeader style</strong></p> <pre><code>&lt;Style x:Key="DataGrid_ColumnHeaderStyle" TargetType="wt:DataGridColumnHeader"&gt; &lt;Setter Property="Padding" Value="5,2,5,2" /&gt; &lt;Setter Property="HorizontalContentAlignment" Value="Stretch" /&gt; &lt;Setter Property="VerticalContentAlignment" Value="Stretch" /&gt; &lt;Setter Property="FontWeight" Value="Bold" /&gt; &lt;Setter Property="BorderBrush" Value="{StaticResource Media_RaisedBorderBrush}" /&gt; &lt;Setter Property="Background" Value="{StaticResource Media_RaisedBackgroundBrush}" /&gt; &lt;Setter Property="Foreground" Value="{StaticResource Media_RaisedForegroundBrush}" /&gt; &lt;Setter Property="SeparatorBrush" Value="Black" /&gt; &lt;Setter Property="SeparatorVisibility" Value="Visible" /&gt; &lt;/Style&gt; </code></pre> <p><strong>Here is my custom DataGrid style</strong></p> <pre><code>&lt;Style x:Key="DataGrid_Style" TargetType="wt:DataGrid"&gt; &lt;Setter Property="ColumnHeaderStyle" Value="{StaticResource DataGrid_ColumnHeaderStyle}" /&gt; &lt;Setter Property="RowBackground" Value="{StaticResource Media_OddRowBackgroundBrush}" /&gt; &lt;Setter Property="AlternatingRowBackground" Value="{StaticResource Media_EvenRowBackgroundBrush}" /&gt; &lt;Setter Property="HorizontalGridLinesBrush" Value="White" /&gt; &lt;Setter Property="VerticalGridLinesBrush" Value="LightGray" /&gt; &lt;Setter Property="AutoGenerateColumns" Value="False" /&gt; &lt;Setter Property="CanUserAddRows" Value="False" /&gt; &lt;Setter Property="CanUserDeleteRows" Value="False" /&gt; &lt;Setter Property="CanUserReorderColumns" Value="True" /&gt; &lt;Setter Property="CanUserResizeColumns" Value="True" /&gt; &lt;Setter Property="CanUserResizeRows" Value="False" /&gt; &lt;Setter Property="CanUserSortColumns" Value="True" /&gt; &lt;Setter Property="IsReadOnly" Value="True" /&gt; &lt;/Style&gt; </code></pre> <p><strong>Here is the markup for my sample DataGrid</strong></p> <pre><code>&lt;wt:DataGrid Style="{StaticResource DataGrid_Style}" Margin="0,5,0,0" ItemsSource="{Binding Source={StaticResource Main_ContactData}, XPath=//Contacts/*}"&gt; &lt;wt:DataGrid.Columns&gt; &lt;wt:DataGridTextColumn Binding="{Binding XPath=@Letter}" Header="ID" /&gt; &lt;wt:DataGridTextColumn Binding="{Binding XPath=@Name}" Header="Name" /&gt; &lt;wt:DataGridTextColumn Binding="{Binding XPath=@IsSaved}" Header="Saved?" /&gt; &lt;wt:DataGridTextColumn Binding="{Binding XPath=@IsBackedUp}" Header="Backed Up?" /&gt; &lt;/wt:DataGrid.Columns&gt; &lt;/wt:DataGrid&gt; </code></pre> <p><strong>Is this a bug?</strong></p> <p>If not, can you please advise me on how to modify my styles so that I don't lose the separator lines and sort arrow?</p> <p><strong>Edit</strong></p> <p>I tried adding <code>BasedOn</code> attributes per @Aran's suggestion (below), but this didn't seem to have any effect. Anyone have any other thoughts?</p> http://stackoverflow.com/questions/855746/as3-setting-default-font-color-etc-of-a-textfield-using-the-stylemanager-clas 1 AS3: Setting default font, color, etc. of a TextField using the StyleManager class Aupajo 2009-05-13T02:09:18Z 2009-10-18T11:57:31Z <p>I'm trying to get StyleManager to have some effect, to no avail.</p> <pre><code>package { import flash.text.*; import flash.display.Sprite; import fl.managers.StyleManager; public class StyleManagerExample extends Sprite { public function StyleManagerExample():void { StyleManager.setComponentStyle(TextField, "selectable", false); var exampleTextField:TextField = new TextField(); exampleTextField.text = "Something"; addChild(exampleTextField); } } } </code></pre> <p>No value (eg. <code>selectable</code>, <code>color</code>, <code>textFormat</code>, etc., using <code>setStyle</code>, <code>setComponentStyle</code> or otherwise) seems to have any effect on the outcome.</p> <p>What am I missing?</p> http://stackoverflow.com/questions/1566884/is-there-a-way-to-attach-an-event-in-a-xaml-style 0 Is there a way to attach an event in a XAML style? Edward Tanguay 2009-10-14T15:00:35Z 2009-10-14T16:00:53Z <p>I want every clickable TreeViewItem to execute <code>TreeViewItem_MouseLeftButtonDown</code>, is there a way to put this in the style so I don't have to define it everywhere. I could run through all children in code behind but I would think there would be an easier way to do it in a style.</p> <p>The following code gives me:</p> <blockquote> <p>Cannot find the Style Property 'PreviewMouseLeftButtonDown' on the type 'System.Windows.Controls.TreeViewItem'.</p> </blockquote> <pre><code>&lt;Window x:Class="TestClickTree2343.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" WindowStartupLocation="CenterScreen" Title="Window1" Height="300" Width="300"&gt; &lt;Window.Resources&gt; &lt;Style TargetType="TreeViewItem"&gt; &lt;Setter Property="IsExpanded" Value="True" /&gt; &lt;Setter Property="Foreground" Value="#aaa" /&gt; &lt;/Style&gt; &lt;Style x:Key="TreeViewItemClickableStyle" TargetType="TreeViewItem"&gt; &lt;Setter Property="Cursor" Value="Hand" /&gt; &lt;Setter Property="Foreground" Value="#000" /&gt; &lt;Setter Property="PreviewMouseLeftButtonDown" Value="TreeViewItem_MouseLeftButtonDown" /&gt; &lt;/Style&gt; &lt;/Window.Resources&gt; &lt;StackPanel&gt; &lt;TreeViewItem Header="Files"&gt; &lt;TreeViewItem Header="File 1"&gt; &lt;TreeViewItem Header="Part 1"&gt; &lt;TreeViewItem Style="{StaticResource TreeViewItemClickableStyle}" Header="Paragraph 1"/&gt; &lt;TreeViewItem Header="Paragraph 2"/&gt; &lt;/TreeViewItem&gt; &lt;/TreeViewItem&gt; &lt;/TreeViewItem&gt; &lt;/StackPanel&gt; &lt;/Window&gt; </code></pre> http://stackoverflow.com/questions/681339/app-crashes-when-changing-tabs-that-contain-listboxes-with-control-templates-on-i 0 App Crashes when changing tabs that contain listboxes with control templates on ItemContainerStyle and bound to CollectionViewSource rebelious 2009-03-25T12:24:23Z 2009-10-08T12:55:02Z <p>Hi, my problem is that i have three tab controls each with a listbox that has style for both the ListBox and the ItemContainerStyle, the styles are the same on all listboxes inside the tabs.</p> <p>two of the tabs are databound using a CollectionViewSource.</p> <p>The problem is as soon as i try to go into tab 2 i get an exception and i cant seem to find out where from (i tired enabling first chance exceptions as well and nothing )</p> <p>playing around with it i found out that if i remove the ItemContainerStyle form the ListBox in tab two it no longer crashes. another way to stop it form crashing is not to have any items in the listbox. and another way is instead of using a CollectionViewSource use a GetDefaultView() on the list and bind to that.</p> <p>here are the lines i use to bind to the listboxes:</p> <pre><code> this.FListViewSource = (this.FindResource("FirstCollectionViewSource") as AutoRefreshCollectionViewSource); this.FListViewSource.Source = this.FirstList; this.FListView = (this.FListViewSource.View as ListCollectionView); this.SListViewSource = (this.FindResource("SecondCollectionViewSource") as AutoRefreshCollectionViewSource); this.SListViewSource.Source = testing; this.SListView = (this.SListViewSource.View as ListCollectionView); </code></pre> <p>this is the XAML for the tab control :</p> <pre><code> &lt;TabControl Width="Auto" Height="Auto"&gt; &lt;TabItem Header="tab 1"&gt; &lt;StackPanel Name =first_Panel" &gt; &lt;ListBox Style="{StaticResource lb_ms}" ItemContainerStyle="{StaticResource black_lb}" Width="160" Name="first_lb" ItemsSource="{Binding}" DisplayMemberPath="name" MinHeight="400" MaxHeight="500" ButtonBase.Click="lb_Click" Margin="5,0,5,0"/&gt; &lt;/StackPanel&gt; &lt;/TabItem&gt; &lt;TabItem Header="tab 2"&gt; &lt;StackPanel Name ="second_Panel" DataContext="{Binding Source={StaticResource FirstCollectionViewSource}}" FlowDirection="LeftToRight" Background="#333333"&gt; &lt;ListBox ItemsSource="{Binding}" Style="{StaticResource lb_ms}" ItemContainerStyle="{StaticResource black_lb}" Width="160" Name="second_lb" DisplayMemberPath="name" MinHeight="400" MaxHeight="500" ButtonBase.Click="lb_Click" Margin="5,0,5,0"/&gt; &lt;/StackPanel&gt; &lt;/TabItem&gt; &lt;TabItem Header="Media"&gt; &lt;/TabItem&gt; &lt;TabItem Header="Domains"&gt; &lt;StackPanel Name ="third_Panel" DataContext="{Binding Source={StaticResource SecondCollectionViewSource}}" FlowDirection="LeftToRight" Background="#333333"&gt; &lt;ListBox Style="{StaticResource lb_ms}" ItemContainerStyle="{StaticResource black_lb}" Width="160" Name="third_lb" ItemsSource="{Binding}" DisplayMemberPath="name" MinHeight="400" MaxHeight="400" ButtonBase.Click="lb_Click" Margin="5,0,5,0" SelectionMode="Multiple" /&gt; &lt;/StackPanel&gt; &lt;/TabItem&gt; &lt;/TabControl&gt; </code></pre> <p>this is the resource directory that contains the styles:</p> <p></p> <pre><code>&lt;ResourceDictionary.MergedDictionaries&gt; &lt;ResourceDictionary Source="Brushes.xaml" /&gt; &lt;/ResourceDictionary.MergedDictionaries&gt; &lt;Style x:Key="black_lb" TargetType="{x:Type ListBoxItem}"&gt; &lt;Setter Property="Foreground" Value="#FFFFFF" /&gt; &lt;Setter Property="FontFamily" Value="Verdana" /&gt; &lt;Setter Property="FontSize" Value="11" /&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="{x:Type ListBoxItem}"&gt; &lt;Canvas Name="can" Width="Auto" Height="25"&gt; &lt;Rectangle Name="filler" Canvas.Top="0" Canvas.Left="0" Width="200" Height="25"&gt; &lt;Rectangle.Fill&gt; &lt;SolidColorBrush x:Name="fillb" Color="#333333"/&gt; &lt;/Rectangle.Fill&gt; &lt;/Rectangle&gt; &lt;Path d:LastTangent="0,0" Stroke="{x:Null}" Fill="#FF6E00" HorizontalAlignment="Right" VerticalAlignment="Top" Width="7" Height="7" Canvas.Left="15" Opacity="0" Canvas.Top="6" x:Name="Path" RenderTransformOrigin="0.5,0.5" Stretch="Fill" Data="M601.11544,190.39485 L590.06202,213.0964 613,213"&gt; &lt;Path.RenderTransform&gt; &lt;TransformGroup&gt; &lt;RotateTransform Angle="90"/&gt; &lt;/TransformGroup&gt; &lt;/Path.RenderTransform&gt; &lt;/Path&gt; &lt;StackPanel Panel.ZIndex="1000" Name="ActionsContainer" Visibility="Hidden" Canvas.Right="0" HorizontalAlignment="Right" Orientation="Horizontal"&gt; &lt;Button Name="btn_edit" FontSize="10" Content="Edit" Height="20" Width="Auto"/&gt; &lt;Button Name="btn_delete" FontSize="10" Content="Delete" Height="20" Width="Auto"/&gt; &lt;/StackPanel&gt; &lt;ContentPresenter Name="con" Canvas.Top="2" Canvas.Left="10"/&gt; &lt;!-- &lt;ContentPresenter Name="con" Content="{TemplateBinding ContentControl.Content}" /&gt; &lt;ContentControl Name="DesignerItem" Canvas.Top="2" Canvas.Left="10" /&gt; --&gt; &lt;/Canvas&gt; &lt;ControlTemplate.Resources&gt; &lt;Storyboard x:Key="SelectedStory"&gt; &lt;ColorAnimation Storyboard.TargetName="fillb" Storyboard.TargetProperty="(SolidColorBrush.Color)" From="#333333" To="#111111" Duration="0:0:0.1" /&gt; &lt;DoubleAnimation Storyboard.TargetName="con" Storyboard.TargetProperty="(Canvas.Left)" From="10" To="30" Duration="0:0:0.1" /&gt; &lt;DoubleAnimation Storyboard.TargetName="Path" Storyboard.TargetProperty="(Path.Opacity)" From="0" To="1" Duration="0:0:0.1" /&gt; &lt;DoubleAnimation Storyboard.TargetName="Path" Storyboard.TargetProperty="(Canvas.Left)" From="15" To="10" Duration="0:0:0.2" /&gt; &lt;/Storyboard&gt; &lt;Storyboard x:Key="unSelectedStory"&gt; &lt;ColorAnimation Storyboard.TargetName="fillb" Storyboard.TargetProperty="(SolidColorBrush.Color)" From="#111111" To="#333333" Duration="0:0:0.8" /&gt; &lt;DoubleAnimation Storyboard.TargetName="con" Storyboard.TargetProperty="(Canvas.Left)" From="30" To="10" Duration="0:0:0.3" /&gt; &lt;DoubleAnimation Storyboard.TargetName="Path" Storyboard.TargetProperty="(Path.Opacity)" From="1" To="0" Duration="0:0:0.1" /&gt; &lt;DoubleAnimation Storyboard.TargetName="Path" Storyboard.TargetProperty="(Canvas.Left)" From="10" To="15" Duration="0:0:0.1" /&gt; &lt;/Storyboard&gt; &lt;Storyboard x:Key="CurrentlySlecetedStory"&gt; &lt;ColorAnimation Storyboard.TargetName="fillb" Storyboard.TargetProperty="(SolidColorBrush.Color)" From="#111111" To="#111111" Duration="0:0:0.1" /&gt; &lt;DoubleAnimation Storyboard.TargetName="con" Storyboard.TargetProperty="(Canvas.Left)" From="30" To="30" Duration="0:0:0.1" /&gt; &lt;DoubleAnimation Storyboard.TargetName="Path" Storyboard.TargetProperty="(Path.Opacity)" From="1" To="1" Duration="0:0:0.1" /&gt; &lt;DoubleAnimation Storyboard.TargetName="Path" Storyboard.TargetProperty="(Canvas.Left)" From="10" To="15" Duration="0:0:0.2" /&gt; &lt;/Storyboard&gt; &lt;SolidColorBrush x:Key="fillb" Color="#333333" /&gt; &lt;/ControlTemplate.Resources&gt; &lt;ControlTemplate.Triggers&gt; &lt;MultiTrigger&gt; &lt;MultiTrigger.Conditions&gt; &lt;Condition Property="ListBoxItem.IsMouseOver" Value="True" /&gt; &lt;Condition Property="ListBoxItem.IsSelected" Value="True" /&gt; &lt;/MultiTrigger.Conditions&gt; &lt;MultiTrigger.Setters&gt; &lt;Setter TargetName="ActionsContainer" Property="Visibility" Value="{x:Static Visibility.Visible}"/&gt; &lt;/MultiTrigger.Setters&gt; &lt;/MultiTrigger&gt; &lt;MultiTrigger&gt; &lt;MultiTrigger.Conditions&gt; &lt;Condition Property="ListBoxItem.IsMouseOver" Value="True" /&gt; &lt;Condition Property="ListBoxItem.IsSelected" Value="False" /&gt; &lt;/MultiTrigger.Conditions&gt; &lt;MultiTrigger.EnterActions&gt; &lt;BeginStoryboard Selector.IsSelected="True" Storyboard="{StaticResource SelectedStory}"&gt; &lt;/BeginStoryboard&gt; &lt;/MultiTrigger.EnterActions&gt; &lt;MultiTrigger.ExitActions&gt; &lt;BeginStoryboard Storyboard="{StaticResource unSelectedStory}"&gt; &lt;/BeginStoryboard&gt; &lt;/MultiTrigger.ExitActions&gt; &lt;/MultiTrigger&gt; &lt;EventTrigger RoutedEvent="ListBoxItem.Selected"&gt; &lt;EventTrigger.Actions&gt; &lt;BeginStoryboard Name="SelectedItemStory" Storyboard="{StaticResource CurrentlySlecetedStory}"&gt; &lt;/BeginStoryboard&gt; &lt;/EventTrigger.Actions&gt; &lt;/EventTrigger&gt; &lt;EventTrigger RoutedEvent="ListBoxItem.Unselected"&gt; &lt;EventTrigger.Actions&gt; &lt;StopStoryboard BeginStoryboardName="SelectedItemStory" /&gt; &lt;/EventTrigger.Actions&gt; &lt;/EventTrigger&gt; &lt;/ControlTemplate.Triggers&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; &lt;Style x:Key="lb_ms" TargetType="ListBox"&gt; &lt;Setter Property="SnapsToDevicePixels" Value="true"/&gt; &lt;Setter Property="OverridesDefaultStyle" Value="true"/&gt; &lt;Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Auto"/&gt; &lt;Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Auto"/&gt; &lt;Setter Property="ScrollViewer.CanContentScroll" Value="true"/&gt; &lt;Setter Property="MinWidth" Value="120"/&gt; &lt;Setter Property="MinHeight" Value="95"/&gt; &lt;Setter Property="Template"&gt; &lt;Setter.Value&gt; &lt;ControlTemplate TargetType="ListBox"&gt; &lt;Border Name="Border" Background="#333333" BorderBrush="{StaticResource SolidBorderBrush}" BorderThickness="1" CornerRadius="5"&gt; &lt;ScrollViewer Margin="0" Focusable="false"&gt; &lt;StackPanel Margin="2" IsItemsHost="True" /&gt; &lt;/ScrollViewer&gt; &lt;/Border&gt; &lt;ControlTemplate.Triggers&gt; &lt;Trigger Property="IsEnabled" Value="false"&gt; &lt;Setter TargetName="Border" Property="Background" Value="{StaticResource DisabledBackgroundBrush}" /&gt; &lt;Setter TargetName="Border" Property="BorderBrush" Value="{StaticResource DisabledBorderBrush}" /&gt; &lt;/Trigger&gt; &lt;Trigger Property="IsGrouping" Value="true"&gt; &lt;Setter Property="ScrollViewer.CanContentScroll" Value="false"/&gt; &lt;/Trigger&gt; &lt;/ControlTemplate.Triggers&gt; &lt;/ControlTemplate&gt; &lt;/Setter.Value&gt; &lt;/Setter&gt; &lt;/Style&gt; </code></pre> <p></p>