0
votes
1answer
37 views

XamDateTimeEditor (Infragistics) mask is not visible when control is disabled or enabled(not in focus)

I have posted this in Infragistics, but just wondering if anyone overhere knows an answer. How can I style the control, XamDateTimeEditor so that it will always shows mask whether the control is ...
2
votes
1answer
109 views

How to get Specific Element of Style by code in Wpf c#

Hi I'm trying to use a template item into the code behind c# I'm trying to access the PictureBox which is WindowsFormHost. And then set it to what I want. <Style x:Key="ScreenListBox" ...
3
votes
1answer
331 views

How do I dynamically bind and statically add MenuItems?

I'm binding the ItemsSource of my MenuItem to an ObservableCollection in my ViewModel. Here is my xaml: <MenuItem Header="_View" ItemsSource="{Binding Windows}"> ...
1
vote
1answer
49 views

Styles on DataTemplates

I have an issue with using Styles on DataTemplates in WPF ... It appears to suck. Suppose that you define a DataTemplate: <DataTemplate DataType="{x:Type local:DataSource}"> <TextBox ...
5
votes
1answer
221 views

How to correctly use a button in a listbox itemtemplate / datatemplate?

I have a Silverlight application that displays a list of items in a ListBox. Each item represents a different 'page' of my application so I have a style that is applied to the ItemContainerStyle ...
0
votes
1answer
49 views

Redefine datatemplate style

Suppose I define a style for a TextBlock on application level, and I also define a DataTemplate for a 'DataClass' on application level that uses some TextBlocks. Now, in some subpart of the ...
0
votes
0answers
172 views

DataContext of DataTemplate in ToolTip Style in WPF

I can't seem to find the right DataContext for the Grid in the ToolTipStyle Style. Just a blank ToolTip appears. <Window.Resources> <DataTemplate x:Key="ListTemplate"> ...
0
votes
1answer
31 views

DataTrigger Overflow exception

How can this be an overflow exception...? <DataTemplate x:Key="ElementTemplate"> <StackPanel Orientation="Horizontal"> <StackPanel.Style> ...
0
votes
2answers
473 views

DataTemplate Binding for ListBox to ViewModel property

I'm using a ListBox with a DataTemplate. <ListBox Grid.Row="1" Grid.ColumnSpan="3" Grid.RowSpan="3" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" ...
1
vote
1answer
424 views

WinRT Xaml - Localizing a Button Style used in a DataTemplate

I'm trying to localize the text for a button. I have the following as the style: <Style x:Key="MapPinAppBarButtonStyle" TargetType="Button" BasedOn="{StaticResource AppBarButtonStyle}"> ...
1
vote
2answers
126 views

Applying style to elements inside a DataTemplate

I have a UserControl which simply contains a TextBlock and TextBox inside a DataTemplate. This is done in the following way: <UserControl.Resources> <DataTemplate DataType="{x:Type ...
1
vote
3answers
550 views

Slow ComboBox Performance

As explained in the following article http://vbcity.com/blogs/xtab/archive/2009/12/15/wpf-using-a-virtualizingstackpanel-to-improve-combobox-performance.aspx, I use the VirtualizingStackPanel to ...
1
vote
1answer
275 views

DataTemplate with Style and DateTriggers from code

I created this DataTemplate, but I can't figure out how to add a style with a DataTrigger to the img variable. I would like img to show different images depending on the value of Suppliers[i].Stock ...
0
votes
2answers
71 views

Highlight item into ControlTemplate using item's property

I have a user control bound to appropriate ViewModel. I have a GraphLayout (using Graph#) on this control bound to ViewModel.Graph property: <graph:ProductGraphLayout Graph="{Binding Path=Graph}" ...
0
votes
2answers
345 views

Resize WPF ListBox selection box

For a project I have implemented a small IntelliSense like control which is nothing than a ListBox. Its DataTemplate consist of a StackPanel holding one Image and one TextBlock. Nothing else. As you ...
3
votes
2answers
419 views

Binding to DataGridTemplateColumn using style applied within DataTemplate?

I have a ComboBox that composes a DataTemplate, and I'm having trouble binding its IsEnabled property to the IsReadOnly property on the templated DataGridTemplateColumn. I've been receiving the ...
0
votes
2answers
248 views

How to set a default value on a DataTemplate?

Can you see this tag: <Image Source="{Binding Image}" Stretch="UniformToFill"/> But below? What I'm trying to do is, when the Image is null, set another default image. Is this possible? ...
0
votes
1answer
349 views

DataTrigger in ControlTemplate does not work

I am new here and hope my first question meets stack overflow's requirements. I have done some research so far but could not figure it out myself. I create a UserControl (derived from an intermediate ...
1
vote
0answers
197 views

LabeledPieChart: Style overrides DataTemplate

I have customized the template of LabeledPieChart (source: Bea) in a Style. Then I created a DataTemplate for the Slices of the LabeledPieChart. Both the style and the DataTemplate works great if they ...
0
votes
1answer
343 views

Why can't I set a data template insdie a style but control template can?

Why doen'st this work: <Style TargetType="s:Substance"> <Setter Property="Template"> <Setter.Value> <DataTemplate> <StackPanel> ...
0
votes
2answers
860 views

Using styles within a data template

I have a class called item, and it contains just two properties. I will display them on the screen as buttons with a style. This question relates to how I can style the button based on the IsSelected ...
1
vote
2answers
244 views

How do I apply a Style Setter for ListBoxItems of a certain DataType?

My WPF ListBox contains two types of object: Product and Brand. I want my Products selectable. I want my Brands not selectable. Each of the two types has its own DataTemplate. By default, anything ...
0
votes
3answers
3k views

Windows Phone 7 - Setting style for specific control within selected ListBoxItem

let's say i have something like this: <Grid> <ListBox x:Name="list" ItemsSource="{Binding SomeCollection, Mode=TwoWay}" SelectedItem="{Binding SomeItem, ...
1
vote
1answer
121 views

I want to reuse a library of WPF UserControls - How can I set the styles?

I have created a WPF desktop application using the MVVM pattern. As part of this effort, I have created a namespace with many dialog windows, dialogViewModels and dialogViews. The dialog windows ...
0
votes
2answers
567 views

Windows Phone 7: Global Resource Not Found

I'm trying to use a global resource dictionary, but I'm getting an error when I try to use a style it contains. In my app.xaml I have: <Application.Resources> ...
7
votes
1answer
1k views

How to propagate styles to Hyperlinks inside a DataTemplate?

I'm try to set the Foreground colour on a Hyperlink using a Style object in an ancestor's Resources, but it's not having any effect. I even used the BasedOn tip from Changing Hyperlink foreground ...
6
votes
2answers
4k views

Style within DataTemplate is only being applied to the last item in ItemsControl?

In the XAML below, I have an ItemsControl that has three DataObjects. I use a DataTemplate to display DataObjects as Buttons with an "X" on them. The Button uses a Style to set its Content. If the ...
3
votes
1answer
996 views

UserControl in DataTemplate doesn't applied style for font

I have a user control in a DataTemplate, The Style of a TextBlock doesn't change the FontSize but changes the Background. Attached are the samples: Create a WPF window. Create a User control, ...
4
votes
1answer
981 views

datatemplate in app.xaml is not getting picked up without any styles?

I have a DataTemplate in app.xaml that binds a view to a viewmodel. <Application.Resources> <DataTemplate DataType="{x:Type vm:someviewmodeltype}"> <vw:somevwcontrol /> ...
0
votes
1answer
755 views

Problem with control template on listbox item

I have own style on listbox item, here is it: <Style x:Key="friendsListStyle" TargetType="{x:Type ListBox}"> <Setter Property="ItemTemplate"> ...
1
vote
1answer
514 views

Setting an Elements.Resource Style using BasedOn within a Resource Dictionary

I have a Resource Dictionary that I am using to define the look-and-feel (style) for my application. I have just created another Resource Dictionary that contains DataTemplates that I am using on ...
0
votes
2answers
468 views

WPF- problem with triggers target

I have own style on listbox, I use in style data template and also control template. In data template I create listbox item with some textboxes. In control template I want create a trigger which ...
2
votes
1answer
1k views

Reusing of DataTemplate

I have two DataTemplates for different cells in my Treelistview control. the templates are 90% similar. How can I reuse the identical Xaml ? <DataTemplate x:Key="@names"> ...
3
votes
1answer
418 views

Question about Data Template or Style in WPF xaml

I have a textbox that has the following simple XAML (not necessary to read it - just have it for reference): <TextBox Name="m_ctrlUserDeviceType" Style="{StaticResource textStyleTextBox}" ...
0
votes
1answer
604 views

WPF - Any ideas why datatrigger not firing?

My listbox is defined below. "Properties" is a BindingList which I am changing one of the items but the Image style is not being updated. Any ideas what I might be missing? <ListBox ...
0
votes
2answers
86 views

Set Window Properties based on Datatype of UserControl

I've got a simple window, that is container for various views. I've got a DataTemplate that shows the correct view based on whatever the window's MainViewModel property is set to. <DataTemplate ...
0
votes
1answer
1k views

WPF: HierarchicalDataTemplate ItemsPanel

I have a `TreeView which uses a custom ItemsPanel to show the first level of items in a StackPanel, but I need to show subitems in a StackPanel too. The problem is, the second level of items are shown ...
0
votes
2answers
2k views

DataTemplate, Style, Triggers

Could you guys help me? I have a with custom and in it: <ListBox> <ListBox.ItemTemplate> <DataTemplate> <Border BorderBrush="Black" ...
2
votes
1answer
438 views

Why do I get a NullReferenceException when using a style on a ContentPresenter?

I've created this template, which uses a style applied to the ContentPresenter so that I can bind the data object's Column property to Grid.Column, allowing the items to determine for themselves which ...
9
votes
3answers
2k views

WPF Some styles not applied on DataTemplate controls

I am trying to learn something about WPF and I am quite amazed by its flexibility. However, I have hit a problem with Styles and DataTemplates, which is little bit confusing. I have defined below ...
0
votes
2answers
474 views

How do I ensure only the headers are shown for the first item in an ItemsControl in WPF?

I am using MVVM binding an ObservableCollection of children to an ItemsControl. The ItemsControl contains a UserControl used to style the UI for the children. <ItemsControl ItemsSource="{Binding ...
0
votes
1answer
218 views

Retemplating a Button control with custom properties possible?

I made myself a TransparentButton style that makes the Button portion behave the way I want it to (mouseover, enabled, etc), but what I haven't been able to do is set the content correctly in the ...
0
votes
1answer
451 views

Underline Text in Label which is in a DataTemplate

i have a ListView which contains objects bound from an collection. The representation of the objects I have set with a DataTemplate. Now I want to do the following. There are two TextBlocks in my ...
0
votes
1answer
390 views

WPF Themes and TemplateSelectors

So I'm going through a style (in this case, WhistlerBlue.xaml) and I'd like to be able to use TemplateSelectors with my data. However, this seems a fallacy because it just doesnt seem to work! How ...
0
votes
5answers
9k views

How can I get a close button on a templated TabItem in WPF?

I have a TabControl where the TabItems are DataTemplated. The template seems to work correctly, in that the usercontrol I want to show in the TabItem is showing correctly. What I am not sure of is ...