0
votes
0answers
13 views

WPF Embedded User Controls

I have a User Control Named Switch and Another User Control Named Output the Output user Control is embedded inside the Switch Control ... now i need to hide for example the Parent Switch when ...
0
votes
2answers
31 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
25 views

ContentControl with special border

I want to write a ContentControl to host other controls and give them a special border. So I added a new UserControl, made a ContentControl of it. It is having a grid, on the outer sides I want to ...
0
votes
0answers
21 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
26 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, ...
0
votes
2answers
32 views

Display a busy indicator while waiting for an initialization of a usercontrol

My app needs to load a usercontrol in the MainWindow on startup. However the initialization of the usercontrol is slow. (not because of loading business data, I already separate the UI from business ...
0
votes
2answers
34 views

WPF UserControl creating multiple layout choices

I have a UserControl that I have various properties defined, so I can customise it for each copy that's on the screen. I have a path that uses a LinearGradientBrush fill. At present this is hard coded ...
0
votes
1answer
22 views

Hide title bar on WPF User Control

I am looking to see if it is possible to hide the title bar and close button on a WPF User Control window. I cannot use the WindowStyle="None" as this only relates to a window and not a User Control. ...
0
votes
0answers
18 views

Adding WPF UserControl to Winform project

When I try to right click on the project and Add->New Item-> WPF it say to me "No items found".I want to add WPF UserControl to a Winform project. I have this problem only with this project, when I ...
1
vote
2answers
28 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
42 views

How to make a BaseUserControl meant for inheritance

I need to create a BaseUserControl that has some custom code behind and inherits from UserControl, so it could be used as a ParrentClass for, actually to be used, UserControls. I have read numerous ...
0
votes
0answers
28 views

Can't set border background as image when use a usercontrol

I Have a WPF window that uses a usercontrol as shown in the following code : <Window x:Class="WpfBorderUserControlTest.MainWindow" ...
0
votes
1answer
44 views

How can I set the text of a label

I've got a usercontrol that I want to put in a FixedDocument, but before I do that I need to change the text of a label. I think I need to use Dependency Properties. Here's the simplified XAML. ...
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
1answer
39 views

My UserControl's DependencyProperty is not being set

I am having a problem with a DependencyProperty. I can't set my DependencyProperty to anything other than what I set as the default in DependencyProperty.Register(...) I have a UserControl that ...
0
votes
1answer
26 views

C# Wpf surfaceusercontrol Contact Events not firing

I have a SurfaceWindow. In it is a Scatterview with a ScatterViewItem and in the Scatterviewitem is a viewbox which contains the SurfaceUserControl. I added some ContactEvents to the control like ...
0
votes
1answer
43 views

UserControl as DataTemplate in ItemsControl

I am trying to use a UserControl as DataTemplate in an ItemsControl. The UserControl is called WorkItemControl and the objects in the ObservableCollection bound to the ItemsSource of the ItemsControl ...
0
votes
0answers
75 views

WPF Binding to DependencyProperty of UserControl in DataTemplate is not working

i have a custom userControl with DPs and have the problem that the binding to these properties only works if i use the controls outside of datatemplates. Outside of Datatemplates works the ...
0
votes
0answers
40 views

How to apply DataTemplate in derived from UserControl

I create my Toolbox user control derived from ListView. How to I can automatically apply DataTemplate for all child of my user control? My user control code behind: public class Toolbox : ListView ...
0
votes
0answers
11 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 ...
1
vote
1answer
55 views

WPF VB - TemplateBinding Fill on Custom User Control and XAML

Making my first WPF application and I'm having problems with a custom user control that I have created. The custom control is a little football shirt made with paths and two labels, one for name and ...
1
vote
0answers
32 views

Keep WPF Popup child loaded

I have a WPF Popup control that has a custom control as its child. Apparently, the child is loaded when the popup opens and unloaded when the popup closes. There is a considerable amount of work to ...
0
votes
1answer
27 views

wpf properties not set after initializecomponent

I have a problem concerning properties that are set in xaml. I've made a user control with a dependency property 'MidiChanel'. I set the value of this property to 10 in xaml. In the constructor of the ...
0
votes
0answers
65 views

runtime Exception when binding to a datacontext of a user control

Here is the XAML for the main page. <StackPanel x:Name="menuStackPanel" Grid.Row="4" Grid.ColumnSpan="2" Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center"> ...
0
votes
1answer
37 views

MVVMLight - Messenger: Sending message from user control project to the exe project doesn't work

I'm using the Messenger class to broadcast messages in the application. Solution structure: UserControlProject - ucContainer - ucContainerViewModel - ucLogin - app.xaml ExeProject - MainWindow - ...
0
votes
1answer
41 views

WPF UserControls: Image disappears even with 'x:Shared=“False”'

I defined a style in a ResourceDictionary for a button with an image: <Style x:Key="BotonIrAInicioStyle" TargetType="Button"> <Setter Property="Margin" Value="0"/> <Setter ...
0
votes
1answer
145 views

Dynamic user control change - WPF

I'm developing an app in WPF and I need to change in runtime a content of a ContentControl depending than the user selected on ComboBox. I have two UserControls and at my combo exists two itens, ...
0
votes
1answer
39 views

Save a WPF UserControl as a vector image

I have created a WPF UserControl library. And I would like to put a vector picture of each UserControl (in default settings) to documentation. So my question is: How do I create a vector image of a ...
2
votes
1answer
136 views

Set the datacontext of a usercontrol within a usercontrol no matter how many layers of usercontrol

I'm currently creating an application that would test the flexibility of WPF. I have some usercontrols that were intended to be quite transparent when it comes to its ViewModel. What I mean by ...
1
vote
1answer
25 views

Unable to reference/bind to view template in user control

I have a view template in a user control as below <UserControl x:Class="Configuration.Views.viewProfileTemplate" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
3answers
117 views

vertical scrollbar no apearing in datagrid inside usercontrol in wpf

I have a user control in WPF that has a DataGrid. I add this user control in a Window inside a TabItem of TabControl. The Vertical scrollbar is not getting visible. I resized the window and it seems ...
0
votes
1answer
53 views

How change color from control page in panorama page using coding4fun color picker

Hi I use this color picker: http://www.geekchamp.com/articles/coding4fun-colorpicker-in-depth. I have first control page(popup) and second main page(panorama page). Now I want pickup color via color ...
1
vote
0answers
23 views

WPF horizontal ItemsControl with usercontrol

I'm trying to design a horizontal stack of UserControls. I have a UserControl named "MiniControl" and an ObservableCollection in my ViewModel named "MiniVideos". In the window i'm trying to put all ...
0
votes
1answer
131 views

WPF: Show and hide user controls after user interaction

I have got the following window which contains my user controls in the upper area (depending on the state of the process) and a button. After click at the button one user control will be hidden and ...
0
votes
0answers
69 views

Why interactions DataTrigger doesn't take effect at design-time?

Okay! I did a big edition :) In a UserControl, I need to use interactions DataTrigger like below. The reason for is that I need a storyboard (MyStory) with a bound key-frame value. (Doing so was ...
0
votes
1answer
21 views

Changing a user control inside property outside it

I have a simple user control with a Ellipse and a TextBlock I want to change the TextBlock.Text property inside the User Control from outside like this I didnt find any simple explanation or way ...
0
votes
0answers
21 views

CommandBinding won't fireing Command with UserControl

I have done searching around with no success. My UserContorl (UC) has no xaml (only UserControl default defenition in xaml). In the codebehind there is a dependency properties and logic stuff. I ...
0
votes
0answers
55 views

UserControl not rendered when using ArrangeOverride on children

I've created a UserControl which may contain one or more child items. All child items are rendered in a horizontal aligned StackPanel and should alltogether consume the whole width of the parent ...
1
vote
0answers
31 views

Want to provide Resize for my Usercontrol. Can somebody please tell me if i have to provide some additional tags in the Usercontrol?

This is my code. I have Used a UserControl and i have used a grid to hold all the UI/UC. this form is not resizable. I want to provide resizable options to the user apart from maximize options. I ...
0
votes
1answer
56 views

How to interact with a component inside a User Control in the Designer

I would allow the push of a button located in a User Control from the designer to change the current TabItem of a TabControl. How can I do ? Thanks.
0
votes
1answer
37 views

It is possible to do 'simple' binding with a UserControl?

I have a user control in which I have some textblocks. I want to include this usercontrol into a listBox (or listview in case it causes any problems). When I check the output windows, I see no ...
0
votes
3answers
55 views

Calling a method of a UserControl somewhere in MVVM

I have the following scenario: I have a user control, let's say UserControl.xaml In the code behind of this control I have the method DoSomething() I have viewmodel for this control ...
1
vote
1answer
39 views

Inheritable Dependency Properties

I have an assortment of user controls and I'm trying to see if I can create a base class for them with some dependency properties. Specifically, most of my user controls follow this format... ...
1
vote
0answers
41 views

How can I have a UserControl that contains Buttons on an ItemsControl that control UserControls that are inside of the ItemsControl (Wizard) in WPF?

Fairly new to WPF and I am wanting to create a Wizard. So I have a UserControl called WizardUC.xaml that contains: namespace ClientApplication.View.Wizard { /// <summary> /// ...
2
votes
1answer
50 views

XML Serialization – serialize the properties in user control

How to serialize the properties in user control? I have tried the following code but I got InvalidOperationExceptio, While creating the XmlSerializer object MyUserControl userControl = new ...
2
votes
3answers
259 views

How to move WPF UserControl from one window to another?

Let's say I have a UserControl called MyVideoControl located in MainWindow.xaml: <Window Name="_mainWindow"> <Grid> <MyVideoControl Name="_localVideo"/> ...
1
vote
0answers
50 views

What is CustomControl can, but UserControl cannot in code implementation level?

I have read some of the blog and documentation which are discussing about the purpose of CustomControl and UserControl in WPF, but I am still kind of confusing about the implementation as below: I ...
0
votes
1answer
98 views

Caliburn.micro and a usercontrol click handler

I have created a very simple user control, an ImageButton <UserControl x:Class="SampleApp.Controls.ImageButton" Name="ImageButtonControl" ...
0
votes
2answers
91 views

Add Windows User Control to a WPF View

I need to add a Windows form User Control (Barcode_Scanner.cs) to a WPF View (MainWindow.xaml) Is there a simple way to do this? Any help would be appreciated.
0
votes
1answer
28 views

UserControl, cursor at tabnavigation

In my window there are two textbox and my usercontrol. Once the cursor is TextBox1. When I click Tab cursor is in my UserControl, but cursor remains stable on TextBox(like | without blink). When I ...

1 2 3 4 5 31