Binding provides a simple and consistent way for applications to present and interact with data.
0
votes
1answer
14 views
Bind from multiple sources
I'm trying to bind several collections to my plotter. Those collections are of type LineGraph. This is my actual code, and it works:
<d3:ChartPlotter x:Name="plotter" ItemsSource="Charts" ...
0
votes
1answer
6 views
How to change value of selected item in ListView by choosing it from another ListView?
I want to allow user to build an action sequence of fixed length. For that I have two list views:
- number 1 displays grouped list of all possible single-step actions
- number 2 displays action ...
0
votes
0answers
10 views
WPF Bind child window context to parent
I have a static collection:
<CollectionViewSource Source="{Binding Source={x:Static Application.Current}, Path=MarketDataListeners}" ...
0
votes
4answers
26 views
WPF binding Not working
I am new to WPF. I have developed this test MVVM Application using WPF. But binding does not work. But as far as my knowledge no errors can be detected. can any one help on this. below images and ...
0
votes
2answers
14 views
Set another value while binding path value is null in textblock
i have a textblock, in my source 2 property for display name in text-block
Property1 is null then display Property2
<TextBlock x:Name="txtName" Text="{Binding Property1 , Mode=OneWay, ...
0
votes
0answers
5 views
jsf 2 component binding null with request scope bean
I am using Spring 3.2.3 beans vs. JSF Managed beans. Most of my code works fine and the problem I am describing does not happen on the first rendering of my page.
I have selectMenuOne controls bound ...
0
votes
0answers
13 views
Combobox with dataset and bindingsource. What am I doing wrong?
I have a datagridview and combobox on a form. I wish to move between rows of datagridview and combobox should be synchronized with the value of one of the columns of the dataset datagridview. In ...
2
votes
1answer
35 views
Filling and binding two combobox WPF Caliburn.micro
I have this table:
I use in my project this view Called NewItem and in this view there is two combobox.
I would like to do this :
that in the combobox Group there are all DESCRIPTION of table ...
9
votes
7answers
6k views
Problems with binding to Window Height and Width
I have some problems when I try to bind the height and width of a window to properties in my view model. Here is a small sample app to illustrate the problem. This is the code in app.xaml.xs
public ...
0
votes
0answers
17 views
Binding double array to DataGrid2D
I want to simply bind DataGrid2D to my array double[,]. It works, when I set it in code behind:
M0Matrix.ItemsSource2D = M0; // where M0Matrix is my DataGrid2D control and M0 is an array of doubles
...
0
votes
1answer
22 views
Correct and proper binding of a control/UIElement visibility to Property MVVM C# WPF
I'm quite new to MVVM, and I've been constructing my ViewModels. I have a ViewModel which contains an ICommand, which is then bound to in my View by a command button. The ICommand causes a procedure ...
15
votes
2answers
15k views
Silverlight UserControl Custom Property Binding
What is the proper way to implement Custom Properties in Silverlight UserControls?
Every "Page" in Silverlight is technically a UserControl (they are derived from the UserControl class). When I say ...
0
votes
1answer
50 views
Does Oracle cache sql statements as the same if the variables are different?
I was wondering if I wrote code, so it produced two sql statements that were the same, but the variable names where different would they be cached as the same statement?
For example if I had:
Select ...
0
votes
2answers
39 views
Simple ListView data binding
I'm trying to display data in a ListView with WPF and C#, and I'm confused by the different examples and methods I have seen. I'm looking for a fully working example similar to my program, or a list ...
0
votes
3answers
8k views
WPF Listbox binding
I have a physician object, and one of its properties is an ObservableList of clinics. It is being used in a window to show the details of a physician. I can get individual properties to bind to ...