0
votes
2answers
25 views
wpf binding when using datatemplate
ok currently i have this piece of code:
<TabItem Style="{DynamicResource MyStyle" x:Name="TabCustomers" Padding="0,1,4,1"
Header={Binding Path=customersHeader}/>
Now i wa …
0
votes
0answers
6 views
WPF DataTemplate DataBound Data not showing on Trigger
I'm having a very annoying problem with my datatemplates, the mouseOver template won't show any of the databound controls, so only the label and textbox are shown on mouseover. The …
0
votes
1answer
12 views
WPF Bound List To Columned Control
Morning folks,
I'm still trying to get my head around databinding in WPF and so I'm having a bit of a problem working out how to solve this issue: I have a datatemplate for a butt …
0
votes
2answers
16 views
WPF DataTemplate/ControlTemplate and VS2008 designer
Hi !
Suppose you have WPF Window composed of many elements that are using DataTemplates / ControlTemplates (ItemControls ... )
But you want to see how every DataTemplate looks li …
0
votes
3answers
15 views
Using a DataTemplate to attach OnClick to bool change
Hi,
I want to create a datatemplate (in code, but thats not the point) which allows me to click on an item and set its bool value. What I managed to create was a combination of Ch …
0
votes
2answers
375 views
Set TextSearch.Text for WPF-ComboBoxItem via DataTemplate
Hi Everybody,
I use a datatemplate to visualize some items in a ComboBox,
the ItemsSource is bound to an ObservableCollection.
To keep it simple, let's say I put persons into the …
0
votes
1answer
29 views
WPF: TreeView and nested templates
I'm trying to display a class using a treeview but nothing is displayed. I've inspected the container with Snoop and I see the StackPanel, but it's empty, even the the project does …
0
votes
1answer
176 views
WPF - Drag from withing DataTemplate
I have a ListBox displaying employees with a DataTemplate - it looks very similar to this screenshot. I want to be able to click on the employee photo, drag it and drop it somewher …
1
vote
3answers
125 views
WPF: TextBox Text is not updating.
I have a user control that i am using inside a Data Template, this user control contains a TextBox which is binded with Value property(declared as a Dependency Property) of my user …
0
votes
2answers
27 views
WPF - using CroppedBitmap in DataTemplate
The following xaml works ok inside a Window:
<Border Width="45" Height="55" CornerRadius="10" >
<Border.Background>
<ImageBrush>
<ImageBrush.Im …
0
votes
3answers
32 views
WPF Listboxitem not aligning items properly
Ok I got the following DataTemplate:
Style="{StaticResource LBStyle}" HorizontalContentAlignment="Stretch">
<ListBox.ItemTemplate>
& …
0
votes
1answer
173 views
DataGrid: Help accessing a control defined in a CellEditingTemplate
Hello,
I am using the WPF DataGrid with a DataGridTemplateColumn. The DataGridTemplateColumn.CellEditingTemplate contains a ComboBox with IsEditable set to 'true'. In my RowEdit …
0
votes
1answer
45 views
WPF - DataTemplate binding to static member
I have a class with a boolean static property called CanSeePhotos and this should control the visibility of pictures in my DataTemplate.
For debugging purposes I am binding "CanSee …
1
vote
1answer
26 views
wpf create a textbox with a button for openfiledialog
Hi,
I'm using a datatemplate for a type that has got a property which is the file address.I need to create a textbox with a button which will open an openFileDialog and then insert …
1
vote
1answer
328 views
Using MEF to import a WPF DataTemplate?
I was looking at MEF as an extensibility framework, and I'm pretty much sold, except for one point:
Let's say I want to import both a ViewModel and a View to display it. I think …
