Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
5answers
13k views

Strange Error - CS0012: The type x is defined in an assembly that is not referenced

The type 'x' is defined in an assembly that is not referenced. You must add a reference to assembly 'abc123'. I have a .NET 2.0 web application that references my assembly 'abc123'. The assembly ...
8
votes
1answer
166 views

Managing WPF Resources (brushes etc.)

Normally, I put what I consider the constitutional root resources, such as brand colours/brushes, fonts and sizes down in the 'distrib' assembly. The Distrib assembly|ies are designed to go out to ...
5
votes
5answers
4k views

Developing wizard UI - WPF

All in WPF: Developing a wizard application, user has to answer a number of simple questions before brought to the main app. The main app is then prefilled with the information obtained from the ...
4
votes
2answers
49 views

How to override MeasureOverride to find the size of ItemsControl

I am developing a UserControl that consists of a block with a heading and a list of items (as ItemsControl). The usercontrol is added dynamically to a canvas. I need to get the actual size of the ...
4
votes
2answers
340 views

How to create ComboBox like UserControl in WPF

currently I'm trying to build an usercontrol wich is able to take elements from XAML like this: <ComboBox > <ComboBoxItem /> <ComboBoxItem ...
4
votes
2answers
2k views

How to create a Circular Style ProgressBar

I need help on implementing a circular progress bar like this: How should I implement the Circle to fill by increasing Value property?
4
votes
4answers
20k views

Force a custom WPF Control to resize correctly

I have written a WPF user control and part of it involves dynamically adding elements to a canvas which effects the height of said canvas. The canvas is nested within a grid. When I dynamically add my ...
3
votes
3answers
66 views

What is the best way to share data between a WPF window and its User Controls?

WPF can be infuriating sometimes. I have a fairly simple application that consists of a single main window that contains a tab control and several tabs. I did not like the idea of having the code ...
3
votes
1answer
93 views

Custom binding in silvelight user control

I'm having issues Binding a custom User Control up through my ViewModel in an MVVM silver light application. The basic control is a Date entry form with three text boxes. I am using the MVVM to get ...
3
votes
1answer
346 views

How to make custom WPF ContentControl that supports drag-and-drop at design time?

I want to create custom WPF control that has a single "child" control inside. Subclassing ContentControl or UserControl works, but has one flaw: these controls don't work in designer mode. By "don't ...
2
votes
1answer
90 views

string collection user control property

I am creating a WPF User Control that needs to have a collection of strings as a property. Currently I have the following code: Variable declaration: private List<string> lsInputNames = new ...
2
votes
3answers
72 views

UserControl Position

I'm developing a WPF application, and I have created a custom usercontrol because I need to create instances of it, on the main window. So, this is how I create a new instance: var MyCard = ...
2
votes
2answers
61 views

WPF Commands - how to consume in user control

I want to put some functionality of my WPF app into user controls, mainly to reduce the clutter in my main window. At the monent I have the following commands defined in my main window. These are ...
2
votes
3answers
136 views

Detect the Acrobat installation or any alternate way to open PDF

i have built a WPF application to view the PDF files using Interop.AcroPDFLib.dll, the problem is if the Adobe Acrobat reader is not installed on the client machine the application stops working and ...
2
votes
2answers
102 views

Problem in applying style on WPF UserControl

I have a user-control and I want to use it in some other project. There is no problem when I set some value to its properties directly: <local:MyUserControl prop1="val1" prop2="val2"> ... ...
2
votes
1answer
179 views

Making a WrapPanel respect his parent's width

Ok here's my code. Note that the StackPanel is directly in a UserControl. <StackPanel Orientation="Horizontal"> <ScrollViewer Width="450" VerticalScrollBarVisibility="Auto" ...
2
votes
4answers
254 views

WPF: using Commands bound in a UserControl

I'm doing a sample with MVVM and have a problem with commands. I have an Article class (with ID, Name, Price, etc.), an ArticleViewModel that represents the view model, and a user control ...
2
votes
2answers
171 views

ItemsControl-wrapping the contents inside the window

I am using an itemscontrol inside a window in WPF. The itemscontrol is bound with a collection and the collection is a group of view models(user controls). My problem - the view is going beyond the ...
2
votes
1answer
145 views

Alert that a WPF UserControl's dependency property must be set?

I often find that when I create WPF user controls, it is because I need to expose a couple of additional dependency properties. Typically, those properties must be set for the control to work in its ...
2
votes
1answer
613 views

WPF bindings on child dependency object of usercontrol not working

I'm trying to get a binding to work on a child object of a user control. The Xaml looks like this: <MyGrid> <MyColumn ExtendedColumnData="{Binding ColumnToolTipDescriptions}"/> ...
2
votes
2answers
253 views

Should UserControls have InitializeComponent in its constructor?

In WPF should I include InitializeComponent() in the user control constructor?
2
votes
1answer
912 views

WPF: Find Resources from UserControl within DataTemplateSelector class

I know there is this thread: How to find a resource in a UserControl from a DataTemplateSelector class in WPF? asking the same. BUT... I am not satisfied with the answer! THERE MUST be a way to grab ...
2
votes
1answer
2k views

Exposing inner Control properties for binding in WPF

[Edit]: I figured out how to do this on my own. I posted my solution in the hope that it will save someone else a few days of googling. If you are a WPF guru, please look at my solution and let me ...
2
votes
1answer
1k views

How do I make my WPF User Control's dependency properties update my view model?

I'm trying to create a user control with dependency properties to bind to. Internally I have a ComboBox that is bound to these same properties, but the binding only works one way. The ComboBox fills ...
2
votes
1answer
402 views

WPF DataContext … looking for the simplest syntax

In the following XAML UserControl I am binding a few items to properties in the UserControl's linked class. <UserControl x:Class="Kiosk.EventSelectButton" ...
2
votes
5answers
385 views

Why would adding an x:Name attribute to a user control cause a compilation error?

I really need some more ideas as to what's causing this, currently it's driving me up the wall. I have a Xaml user control which contains another user control like this : <UserControl ...
2
votes
3answers
2k views

WPF Get UserControl owner

so I have this UserControl that's inside of another UserControl. Lets call them ParentUC and ChildUC. I need to get ParentUC from ChildUC. I know to get the window owner would be ...
1
vote
1answer
11 views

Scenario with dependency properties-how to access each other

I have a two dependency properties(both List of strings) in a custom user control.The binding for one of these dependency properties can be changed several times for the life of the application. I ...
1
vote
0answers
30 views

How do I create UserControl in IronPython WPF project?

Iron Python Tools Visual Studio 2010 does not provide a way to add WPF User Control in a IronPython WPF project? How do I make one? I tried copy-pasting User Control from C# WPF project but it did not ...
1
vote
1answer
57 views

More details - When nesting properties that implement INotifyPropertyChanged must the parent object propogate changes?

My question is almost like the following existing question: When nesting properties that implement INotifyPropertyChanged must the parent object propogate changes? My question is If I have three ...
1
vote
1answer
103 views

TabControl within TabItem

I have tabs bound to an observable collection property in a ViewModel. The data template for each viewmodel is a user control containing an inner tab control. When I switch tabs in the inner tab ...
1
vote
1answer
41 views

WPF GRID to GRID drag and drop

I am trying to find a way to drag and drop between two grids(NOT datagrids). Both grids have 3 columns and the second grid gets populated based on whats dropped from first grid and the rows on second ...
1
vote
1answer
59 views

WPF DataGrid - Why the extra column

I have a WPF app that uses datagrid to display some data. When I run the program there is an additional column as shown here: Here is what it looks like when I design it in VS2010 I have ...
1
vote
2answers
46 views

UserControl display order in wpf

I've main Window and several UserControls, that shows in the same position (one on the other). How to adjust to the newly opened UserControl appeared at the very top? Now if one of them is opened, ...
1
vote
1answer
63 views

How do you reference a XAML DictionaryResource from an external Assembly?

I'm a total Nubie to the world of WPF. I'm just starting to get immersed in it. I've got an issue I'm trying to figure out with using ResourceDictionary and Merged Dictionaries. I've got WPF sample ...
1
vote
2answers
78 views

Complex custom control and properties visibility

I'm developing a custom WPF control ("multi selector"). I give my users ItemsSource property for binding purposes, but internally I'm using ItemWrappers collection like this: <UserControl ...
1
vote
1answer
113 views

How to bind button command to main window command

Im attempting to bind a button in a user control to a command defined in my applications main window. Just cant seem to get it to work. The CanExecute method is never called and neither is the code ...
1
vote
2answers
64 views

Load UserControl in WPF

I have a ribbon control in a small WPF application, and I have a button called Search. My idea is that when I press this button in the Main Window, I load a user control, and I wish to get a result ...
1
vote
1answer
53 views

Binding from itemscontrol to usercontrol

i have a usercontrol called MessageElementControl. it is contained by a MessageElementContainerControl. when i call the MessageElementControl i am trying to pass to it some properties from the ...
1
vote
3answers
99 views

Advanced WPF Validation

Could anybody provide any link to tutorial which fully explains WPF validation. I'm not interested in reviews, I'm interesting in MVVM-style validation using IDataErrorInfo. There are a lot of ...
1
vote
0answers
323 views

Exception has been thrown by the target of an invocation.

While I was trying to add Controls to my UserControl list it threw "The calling thread cannot access this object because a different thread owns it." exception. ...
1
vote
1answer
48 views

How to use WPF Data Binding with an MVVM Model to Populate a StackPanel with Custom Controls

I have a hierarchy of data that looks like this: Policy Check Action Action Action Check Action Check For each Policy/Check/Action, I have a custom control built in WPF. I have been ...
1
vote
2answers
174 views

WPF Tookit - IntegerUpDown

How do I get the value from the IntergerUpDown control? I'am using this : http://wpftoolkit.codeplex.com/wikipage?title=NumericUpDown Here is the code from MainWindow.xaml ...
1
vote
1answer
180 views

User Control databinding issue with listbox and MVVM

I've created a WPF user control with 2 listboxes (named "Source" and "Value") and a "Add" button that allow the user to "copy" items that are bound to the Source listbox to the Value listbox. Here's ...
1
vote
3answers
164 views

DataBinding Text Property of UserControl to ObservableCollection does not update

I have created a UserControl, which is to display a converted string value based on the contents of a bound ObservableCollection. Everything works when the application loads; my IValueConverter is ...
1
vote
2answers
55 views

Is convenient to show a menu at this way?

I'm creating a menu, but I think showing a window in each menu it's so annoying. So I think showing an user control to a certain grid row is a good way. Look at this: I've got a menu: Students and ...
1
vote
4answers
136 views

how to build MVVM style User Control?

WPF: how to build MVVM style User Control? In WPF we can design user controls, similar to Asp.Net or Winform. In WPF we have MVVM design pattern, similar to MVC. But in WPF is it possible to build ...
1
vote
1answer
211 views

How to add user control into groupbox

I have c# winform application and one WPF user control. How i can add groupbox(which is in winform) controls my wpf usercontrol?
1
vote
1answer
246 views

Passing custom objects to UserControl via XAML binding

What I'm trying to do is create a UserControl to which I can pass an Address object. It seems that when I pass Address="{Binding Path=Person.Address}" to the UserControl, the embedded TextBox is ...
1
vote
1answer
137 views

UserControl databinding with a treeview

I have a UserControl which contains a treeview and a textblock : <TreeView ItemsSource="{Binding FirstGeneration}" AllowDrop="True" Drop="TreeView_Drop" Width="300"> ...

1 2 3 4