Tagged Questions
0
votes
1answer
29 views
How to bind value from Viewmodel to usercontrol in view
I have a window, that contains a usercontrol.
The usercontrol have a dependency value, which I need to bind to a value on the windows viewmodel.
But, no matter what I try, I end up with null.
So, ...
1
vote
2answers
31 views
Binding on DependencyProperty of custom User Control not updating on change
I'm having difficulties with databinding on my custom user control(s). I created an example project to highlight my problem. I'm completely new to WPF and essentially MVVM as well, so bear with me...
...
1
vote
2answers
38 views
How to bind a grid to a user control
I want to create a settings menu that looks similar to VLC's advanced settings menu: Treeview on the left and some kind of control collection on the right. The controls on the right should enable the ...
0
votes
0answers
12 views
Derived (user)control automatic styling
I have a problem with automatic styling of controls derived from System.Windows.Controls.Primitives.Thumb (i named them MyControl). I attach a sample of code here:
<Canvas ...
0
votes
1answer
51 views
Databindings for label on a winform usercontrol
I'm creating a usercontrol for a winform app that contains two labels, one as a header and the other one needs to bind to a datasource through Me.usercontrol1.databindings.add(). I'm a novice in ...
0
votes
1answer
164 views
vb.net: DataBinding of a UserControl-CheckBox and a Class-Property is not updated on PropertyChange
I made a small UserControl with a checkbox in it and tried to DataBind it to a boolean property of a class. The DataSourceUpdateMode of the Binding is set to OnPropertyChanged. Unfortunately it doesnt ...
0
votes
0answers
40 views
Binding to multiple UC on GridView
I have a GridView on which is a Custom Control.
I can populate this custom control using
ContronInCustomControl='<%# Bind("ColumnNameFromSource") %>'
how ever if I wanted 2 or more of these ...
0
votes
1answer
122 views
How to set SearchLookUpEdit for DevExpress ComboboxEdit in UserControl from Container control?
I have a UserControl that contains DevExpress ComboBoxEdit control with SearchLookUpEdit as an editor set. I have set searchLookUpEditView, and its columns in Designer also.
I want to set ...
0
votes
1answer
45 views
Communication between usercontrols in WPF
I am trying to build an application that contains several user controls. In one, I have a treeview that has been bound to a parent list and in another, I have a datagrid that is supposed to be bound ...
1
vote
2answers
40 views
Bind an ObservableCollection to Lines
I want to have a graphical part in my UserControl which will display Lines based on a collection (and update coords during runtime and also add/remove lines during runtime based on the collection).
...
0
votes
2answers
75 views
Confused about Binding in UserControl
I'm creating a UserControl object, and i'm trying to assign values using Binding (with PropertyChanged). I made a prototype, when I assign value in ViewModel , the value does not appear or modify the ...
0
votes
1answer
76 views
Bind to the CollectionViewSource of a parent control
I have a composite view that is made up by a parent user control (Counterparties_MainWindow) with to embeded user controls (Counterparties_UserInputs and Counterparties_SystemDetails):
...
0
votes
2answers
75 views
My WPF user control has one-way bindings and I don't know why
I have created a very simple user control that shows a ColorPicker (from the WPF Extended Toolkit) and a text field for its hex code:
<UserControl x:Class="HexColorPicker"> <!-- namespace ...
0
votes
2answers
331 views
User control's property loses value after a postback
This is the HTML. I have a repeater that contains a user control.
<asp:Repeater ID="rpNewHire" runat="server">
<HeaderTemplate>
<table>
</HeaderTemplate>
...
0
votes
1answer
35 views
UserControl inside UserControl is not reflecting data from ViewModel
In MainWindow, I am setting its contant to be a UserControl -
<Grid>
<local:MainControl></local:MainControl>
</Grid>
In MainControl, I am using other UserControls -
...
0
votes
0answers
31 views
How does a ListView Control access a IList collection?
I have a question about how ListView works.
The Background:
My implementation is to do Data Virtualization, the paging is done in the background and will update the Collection in the Listview when ...
1
vote
1answer
122 views
Getting a tooltip in a user control to show databound text and stay open
I have a user control that shows a TextBox along with a small help icon.
My goal is to have a ToolTip pop-up, show some databound text and stay open when the mouse hovers over the help icon.
So, to ...
1
vote
0answers
67 views
Binding Row to Validation Rule WPF
I want to bind TextBox's Tag (which is inside a DataGrid), to validation rule's CurrentLegStrategy property (which is a DependencyProperty). Although I've done something similar with Deal dependency ...
2
votes
2answers
378 views
WPF TextBlock text Binding
the TextBlock binding does not work and I cant figure why...
(This Code Works but the TextBlock does not get Updated )
XAML
<TextBlock x:Name="filterAllText"
Text="{Binding ...
0
votes
0answers
128 views
Data Binding not working for WPF User Control
I have tried same questions in SO and other related materials, but still I was unable to find the issue in my code. I am trying to do data binding in a WPF User Control as below.
I have these ...
0
votes
3answers
262 views
wpf usercontrol data-binding using xaml
I have wfp form like that:
public partial class MediaPlayerControlMain : Window
{
MediaPlayerMain MediaPlayerMain;
public MediaPlayerControlMain()
{
MediaPlayerMain = new ...
0
votes
0answers
45 views
Could not find a type for a name. The type name was 'LabTracer.LabTracerDataSet+DeviceDataTable'
I have created a custom control class that inherits from ComboBox which fetches all the items from database. Now when I add the control in another User Control I get the error:
Error 1 Could not ...
1
vote
1answer
389 views
Setting datacontext of UserControl to ViewModel defined in parent viewmodel
I'm trying to create an application using the MVVM pattern with nested viewmodels. The master viewmodel is ShellView which contains three UserControls, each with their own viewmodel. The ShellView ...
0
votes
1answer
130 views
WPF Binding at different levels
Hopefully this is obvious to an experienced WPF user. When binding do I have to consider the (embedded) level of the target that I am binding to?
In the XAML below I have MyTextBox which can accept a ...
0
votes
1answer
152 views
Bind DataTable To Textbox UserControl
I searched a lot for this problem but i did not find any clear post about that.
I do databinding with this command:
userControl11.DataBindings.Clear();
userControl1.DataBindings.Add( "Text",dt,"DM" ...
0
votes
1answer
50 views
Trigger an Event when value has changed
I'm trying to trigger an event (function) in an air application when a value has changed (i.e. when a user has logged in), but so far I've no succeeded in triggering my function...
I have following ...
1
vote
1answer
93 views
Binding error when using two same User Controls on one parent Window
I have a User Control defined like this:
XAML:
<UserControl>
<Grid x:Name="LayoutRoot">
<TabControl x:Name="TabControl" ItemsSource="{Binding Products}" >
...
1
vote
1answer
142 views
How to bind the text in a textbox of a usercontrol into a textblock?
I create a user Control textbox and i want to bind the textblock to what i type in the user control's textbox. I try some code, but it doesn't work. Anyone can teach me? Thanks
My userControl ...
0
votes
0answers
151 views
WPF Binding to user control from ItemsControl
I have an issue that I can't find a resolution to. To demonstrate I have a test user control (TestTabControl) containing the following XAML:
<TabControl ItemsSource="{Binding ...
2
votes
1answer
246 views
Binding a List to a UserControl Property
I'm having a bit of trouble getting my User Control to bind to a List<>. It works great when I attempt to do something like:
public string Map
{
get { return (string)GetValue(MapProperty); }
...
1
vote
1answer
105 views
Windows Phone app: Binding data in a UserControl which is contained in a ListBox
I have an "AddressListBox" ListBox that contains "AddressDetails" UserControl items, as shown in the .xaml file extract below. The Addresses collection is defined as
ObservableCollection< Address ...
0
votes
1answer
94 views
WPF: display a collection of datagrids in a custom format (with image)
I have 2 classes, one inside the other, and a prop with an ObservableCollection of the class with the sub-class collection. But I'm having a serious trouble in displaying the whole thing.
First my ...
2
votes
2answers
534 views
Binding to a UserControl “Failed to assign to property” error (Windows 8)
I am making a Windows 8 app in VS2012 and trying to bind a list of objects (cards) to a user control that will display two strings. Here is my code for the user control on one page:
<FlipView ...
0
votes
0answers
53 views
Databind UserControl to Collection
I'm trying to create a user control that I can databind to a collection (an EntityCollection to be specific). All I want is to be able to set a property, such as:
MyControl.DataSource = Order.Items
...
0
votes
2answers
121 views
How can i use <%# Bind(“myField”) %> from a usercontrol in asp.net?
Like the title says, i would like to bind data from my usercontrol to my page's EntityDataSource. I tried this:
in my user control:
<asp:Textbox runat="server" id="mytxtbox" Text='<%# ...
1
vote
0answers
137 views
Data Binding in a WPF User Control
A seemingly simple problem that has me gridlocked. I have a usercontrol that contains a TextBlock.
I wish to bind several properties of the TextBlock (Text, FontSize, Foreground, Background, Margin). ...
-2
votes
1answer
66 views
Change the content of a Label from a UserControls
I have created a UserControl called UserControl1 and added it into my MainWindow.
What I want is that when the user clicks on the add button on the UserControl the label called data in the MainWindow ...
1
vote
3answers
131 views
Interaction between UserControl and Windows
I've created a UserControl which contains some conrols (buttons and checkboxes).
After that I added a reference to that UserControl in my WPF Windows.
What I want to do is : when I click in a button ...
-1
votes
1answer
391 views
datasource Updating when bind to user property
C#, VS-2010, winforms
Generally I want to create user control with a bindable MyProperty. But I met some problem: Data row become modified when current row changed.
You can download C# project and ...
0
votes
0answers
51 views
How to implement a WPF/XAML User Control that is binded to an object whose dynamic type is changing?
Here is the situation:
A a = new B();
I want to have a User Control that is binded to a, exposing B fields, and when I do:
A a = new C();
I want this control to adapt to C fields.
What are my ...
0
votes
2answers
387 views
How to Bind with Observable collection of UserControl Type Objects
I am stuck to a data-binding issue in WPF. Following is the scenario.
I have a Telerik's RadTileView which is bind to an ObservableCollection of type MyItem.
public class MyItem : UserControl
{
...
1
vote
1answer
90 views
What can cause WPF binding to break (using ADO.net)?
I'm been on this problem for 3 days now, and I'm out of options. Don't know what else to do. I have a UserControl with TextBoxes inside, all defined similarly as such:
<TextBox ...
0
votes
0answers
210 views
How to pass a bound ObservableCollection item to a UserControl in WPF?
I have a UserControl with a ViewModel. The ViewModel has an ObservableCollection of type DeployItem and is populating this collection in the UserControl as follow:
<ScrollViewer Margin="0,0,0,40" ...
1
vote
1answer
89 views
How to set databinding for a usercontrol?
I my project, I want to use a user control which is the combination of a textblock and a textbox. I can create some custom properties for the usercontrol like
public string Caption
{
...
0
votes
3answers
147 views
How do i access a combobox text in a usercontrol from the wpf forms viewmodel?
I have a UserControl with 4 combobox bound to collections in viewmodel for that usercontrol.
I have used this control in a wpf form. This wpf form has its own viewmodel.
How do i access the text ...
0
votes
0answers
206 views
Vb.net usercontrol object binding
I have a windows form application in VB.net.
I am using custom object
e.g. customer -> Name, Address, dob, telephone
I have a numbor of user controls taht i will call dyanmiccaly in code. These ...
2
votes
1answer
210 views
Bind data from controller to View -> Control
I am implementing MVC in a WinForms Application. In the view there is a combobox control. I have declare a property called SheetLoader with getter and setter:
public BindingSource SheetLoader
{
...
0
votes
3answers
2k views
Data Binding in WPF User Controls
I am creating a UserControl for a series of controls shared by several windows. One of the controls is a Label which shows the flow of some other process in terms of "protocol numbers".
I am trying ...
1
vote
1answer
136 views
DataBinding to a context menu in wpf?
I have a UserControl, defined like so:
<UserControl x:Name=userControlName>
<UserControl.Resources>
<Style TargetType="{x:Type MyControl}">
...
2
votes
2answers
174 views
How to determine if a control is start initializing and complete initialized and binded
I have a WinForms control with many different binded controls. The main control can be showed/hided several times with parent form. I would like to know when control starts initializing (first time or ...

