1
vote
0answers
23 views

Binding ComboBox SelectedIndex to XML

I am binding my controls in a window to an xml-file. This works fine for all controls except the ComboBox. By the following code I want to set the SelectedIndex for a ComboBox by the value of an ...
1
vote
1answer
14 views

Bind to static generic instance of a class

I use this code in my views' (which are UserControl) constructors: this.DataContext = The<Chart1ViewModel>.Instance; Where the The<> is a generic static per-type singleton storage which ...
0
votes
0answers
13 views

Setting MaxHeight on ListBoxItem to ListBox ActualHeight

I have a custom control in a ListBox. I set the ListBoxItem's MaxHeight to the ListBox's ActualHeight: MaxHeight="{Binding ActualHeight, RelativeSource={RelativeSource Mode=FindAncestor, ...
0
votes
0answers
35 views

WPF DataGridTemplateColumn Header binding not working

I am using the DataGrid with some manually created DataGridTemplateColumns. Here is a code snippet of that in work: <DataGrid ItemsSource="{Binding Projects, Mode=OneWay}" ...
0
votes
1answer
42 views

WPF Datagrid view header binding

Actually the issue im facing is slight different than what title says. I try to sumarize the issue below. Class PersonnelViewModel { public SelectedPersonnelItem PersonnelItemViewModel; } Class ...
0
votes
0answers
15 views

MarkupExtension, WeakReference and Lifetime

I am using a custom MarkupExtension for my application localization. The markupextension code looks like this: public sealed class LocExtension : MarkupExtension { public string Key { get; set; } ...
0
votes
0answers
17 views

WPF Binded DataGrid keep preloaded data

Class Customer { string Type, string Name } I have a DataGrid binded to an ObservableCollection<Customer> |ComboBoxColumn "Type"|TextColumn "Name"| ComboBox Items in "Type" column ...
0
votes
0answers
16 views

XAML timer-triggered binding update

Suppose you have textbox whose value is time-dependent, like say, the the time passed since the application was started. Is it possible to express a solution in pure XAML which automagically ...
1
vote
0answers
21 views

WPF databound Combobox

I need to create a usercontrol that behaves like a combobox. Instances of this combobox will be databound to a certain collection at runtime. (i.e a collection of strings, to keep this question as ...
0
votes
2answers
44 views

WPF binding does not work with a UserControl

In my MainViewModel I have a property, which is set by the user. When a new value is received, I would like to update information at my UserControl. The problem is the binding does not work. The way I ...
0
votes
1answer
36 views

wpf datagrid combobox binding staticresource list of keyvalue pairs

I hope someone can help me or post a link to related question, that would have the answer. I have read most of them and thats how I got this far... So I have a datagrid with 3 columns, two of them ...
3
votes
2answers
34 views

Why does DependencyProperty override the normal property binding behavior?

I occasionally ran into an issue. here is a simple example: Xaml Code: <Window x:Class="WPFProperties.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
0answers
22 views

WPF - Need to bind a List of UserControls to another UserControl

I need some guidance on binding a List of UserControls to a another, different User Control. So I have this user control that is just an arrow with a label and a line: <UserControl ...
0
votes
1answer
39 views

Self-referensed entity to wpf treeview using Binding Converter and ObservableCollection

I have entity , build by default from the database table which references to itself I'm new here and low reputation not alows me to add images, so I'll write all I can. Area : EntityObject ...
0
votes
1answer
28 views

Binding TextBlock To Observable Collection

I am trying to bind a textblock to a item in a observable collection. Below is the class and the property for the collection. Am I binding correctly? Thanks! public class ListStuff { public ...
3
votes
1answer
29 views

Set culture for a WPF DateTimePicker validation

I use a DateTimePicker on a WPF application. I would like to bind the .Text property to the SelectedDate, so I use binding like this: <DatePicker x:Name="DateTimePicker_Date" ...
1
vote
1answer
51 views

WPF pass DataGrid selected row as command parameter

MainWindowViewModel has a ViewCustomerCommand(string id) command that shows a customer by id MainWindow.xaml containing TabControl TabControl has a UserControl that contains DataGrid that is bind to ...
2
votes
1answer
35 views

WPF Binding : Casting in binding path

I've a binding where the Path is set to Path=Item.Tag.caption, but I need to cast Item to IEDGE first so I can access the Tag Property. Is there a way to achieve this?
1
vote
1answer
59 views

WPF Binding : accessing subproperties of bound object

I have a control with a property named Item of type X, Item has a property named Tag of type Y, and Tag has some other properties (caption, location,...). I've written a control template for my ...
0
votes
1answer
34 views

WPF DataGrid bind cell background color to property of assigned Data object

I've got a DataGrid where the cells are assigned to a custom class defined below: public class DataGridVariableWrapper : DependencyObject { public Variable TheVariable { get; set; } public ...
0
votes
1answer
19 views

Wpf Button Width in GroupBox Header

I have the following code: <Window.Resources> <DataTemplate x:Key="ParameterItemTemplate"> <my:ParameterItem ParamValue="{Binding Value}" Description="{Binding Name}"/> ...
0
votes
1answer
16 views

Silverlight 3 Binding with a little change

Let's say I have class with Name property. I'd like to bind collection of objects of this class to Silverlight 3 ListBox. But I want to show items like that: "Some dynamic str " + Name (object ...
0
votes
1answer
37 views

Master-detail hierarchy between a ListBox and a DataGrid

I would like to set a DataGrid.ItemsSource property according a ListBox.SelectedItem value so that whenever a category is selected in the ListBox, the DataGrid should display the appropriate ...
0
votes
0answers
18 views

Restore default sizing behavior for Grid WPF

I have one Grid who's Height I bind to another Grid's ActualHeight in code. This part is no problem. But after a specific user interaction I want to remove this binding and have the Grid behave as it ...
2
votes
1answer
41 views

My WPF custom control's Data Context is superseding parent's

In my main window, I try to bind to a bool. But it's looking in my custom control's data context instead. If I don't assign DataContext in the user control, then the main window's bindings work, but ...
0
votes
2answers
47 views

image control don't change the source when binding changed

I use event in my code to notify if image was scanned in my ViewModel : public BitmapImage ImageSelected { get{return _imageSelected;} set { if (_imageSelected == value) { ...
-1
votes
0answers
27 views

WPF application settings bound to ListBox

I have a strange behaviour in my WPF application that I do not understand. I use a ListBox with an ObservableCollection that is within my Settings.Default object. <ListBox ItemsSource="{Binding ...
0
votes
1answer
26 views

WPF The property 'Content' cannot be data bound to a visual element

I have a list view and on the first column i try to bind the index of the underlying collection. <Window.Resources> <local:IndexConverter x:Key="IndexConverter" /> ...
0
votes
0answers
38 views

Binding static resource and observable collection

I'm pretty new to WPF's data binding so try to keep things as simple as possible. :) I'm trying to bind a static resource and an observable collection together. They both are the same type. Here's my ...
0
votes
0answers
31 views

Binding WPF Canvas Properties

I have a 4 Canvas Layouts in which I would like to Bind the Fill Colors and set Visibility property based on a View Model property. For example, if property Dogs = Boxer, set Fill color to Brown, and ...
0
votes
1answer
28 views

Bind to parent control from within context menu within data template

I'm wanting to bind to a parent control from a context menu within a datatemplate. Unfortunately I'm restricted to .net 3.5 and can't use the x:reference extension introduced in .net 4. Below is an ...
2
votes
2answers
75 views

XAML Binding to parent of data object

I have a grid column defined. The parent grid gets its items from an ObservableCollection of type ItemClass. ItemClass has two properties: String Foo, and bool IsEditAllowed. This column is bound to ...
0
votes
2answers
40 views

TextBlock Text Binding an ObservableCollection.Count property

I have a ObservableCollection<Sportisti> that starts out with 0 elements (but is initialized to a new object at the creation of the window). I wanted to bind the Count property to a TextBox. ...
0
votes
0answers
15 views

Dialog window height binding doesn't work when converting to .net4 wpf

I have a user control inside a dialog window and I want that the height of the window to bind to the height of the user control. I had the following binding: <Window.Height> <Binding ...
0
votes
1answer
58 views

How to switch between 2 data sources for ListBox.ItemsSource

What is the best/elegant way to bind ItemsControl.ItemsSource to 2 different sources best on a given property? The binding should be done only to one of the 2 collection, the selection to which ...
0
votes
2answers
48 views

String format in wpf

I have a TextBox on WPF that is related to the float variable in my model Following the TextxBox: <TextBox Text="{Binding Position, StringFormat=f4}"/> I want that TextBox will display a ...
1
vote
1answer
34 views

WPF content binding - want to display two attirbutes of a ListView in a StatusBarItem

I have a StatusBarItem which I want to display the following message at any given moment "X/Y" where X is the number of the row of the currently selected element, and Y is the row count. Now, if I ...
0
votes
0answers
14 views

How do I get my own property to show in the binding dialog in WPF UI designer?

For example, I have a very simple property: public partial class MainWindow : Window { public int SomeNumber { get; set; } public MainWindow() { InitializeComponent(); } } ...
0
votes
0answers
27 views

CollectionViewSource {Binding} doesn't return CurrentItem

The following doesn't work. The converter is just called once with a null value and not the item from collectionViewSource. <ScrollViewer DataContext="{Binding Source={StaticResource ...
1
vote
1answer
39 views

BindingError 40 on DataGrid CellEditingTemplate

I have a strange bug with my DataTemplate "PersonDataTemplate" I use it as CellTemplate and asCellEditingTemplate. On my CellTemplate all works fine but on my CellEditingTemplate I get following Error ...
0
votes
0answers
15 views

Bind CheckListBox to ObservableCollection

I have a 2 properties ObservableCollectionProjectUsers ObservableCollectionChosenProjectUsers I put in a window a CheckListBox that shows all the ProjectUsers. I want ChosenProjectUsers to hold ...
0
votes
1answer
24 views

How to set the Control Visibilty of the Second Control depending on the Binding Value of the first

I have a Custom Wpf Control i.e. combobox:WpfTwComboBox. I want to set the visibility using a property called DisableProviderSelector. The usual use of triggers is not helping. The scenario here is ...
0
votes
1answer
34 views

Binding data to combobox in WPF

I am a beginner in programming, especially WPF. I have an application in WPF. I have changed connection to .sdf database from Entity Framework to SqlCeCommand. Unfortunatelly, before this I had the ...
1
vote
2answers
48 views

How to Bind a nullable bool in VM to RadRadioButton

I am struggling with how I go about this? In my VM I have a nullable bool property that I want to bind to a Yes/No(true/false) RadRadioButton. Can someone point me in the right direction? VM ...
0
votes
2answers
39 views

C# WPF Change Resource On Click

My XAML is here: <Window.Resources> <XmlDataProvider x:Key="rssSource" XPath="//item" Source="https://news.google.com/news?output=rss" /> </Window.Resources> I need to change ...
0
votes
1answer
47 views

Trying to understand how i can bind a WPF DP in a different class

I am trying WPF to develop a tiny scoreboard. In this project i have 3 XAML files. ControlDisplay.xaml : Here is where i set the points for team 1 and team 2 in the scoreboard. Right now i only ...
0
votes
1answer
20 views

Access other xaml controls data in another control's event

I have below listbox to which i am binding data from a class(SavedDataClass) defined.When user clicks on link "Update" i want to access the entire data of other members of that particular instance of ...
0
votes
1answer
39 views

Control Databinding to View not ViewModel in MVVM scenario

I've been working with the MVVM model for a week or so now and I think I have a handle on what should go where now. Note the "think" in that. I have a single ViewModel that my view (MainWindow) binds ...
0
votes
2answers
26 views

Binding to property that a class

How can I use binding without a Converter like the commented code below? public partial class MainWindow : Window { public MainWindow() {ABC = new ABCClass(); InitializeComponent(); ...
0
votes
1answer
41 views

Enable TextBox depending on enum value

I have a TextBox that I want to enable if a Order's Status is either OrderStatus.New or OrderStatus.Ordered. It it's something else, the TextBox should stay disabled. <TextBox Text="{Binding ...

1 2 3 4 5 80