0
votes
0answers
34 views

Dynamically created custom control in wpf and it's values

I create my custom control which contains only root stackpanel and which have only one dependency property called param1. Whenever param1 changes I dynamically add to stackpanel some textboxes or ...
0
votes
1answer
31 views

WPF prevent dynamic grid contents from stretching beyond parent size

Have a UserControl that must never exceed 700px in width. Have set it's MaxWidths to 700px. Inside is a grid - 3 columns. First and second column will have labels, third column will input fields. ...
0
votes
0answers
31 views

WPF WrapPanel, GroupBox height

I've got a few GroupBoxes containing different number of controls, mostly TextBlocks and TextBoxes, and thereby of different heights. I generate these GroupBoxes dynamically. When the WrapPanel is ...
0
votes
3answers
80 views

WPF: Placing a textbox randomly on a canvas

I have a canvas of sorts derived from a 'Panel' used for custom drawing of lines and other geometries, all from VB code. I got this approach from a book and I'm not sure it's the best approach. The ...
0
votes
1answer
102 views

WPF - ListBoxItem - Change DataTemplate element colors dynamically

There are several articles written about similar tasks to this. However, none seem to be close enough to work for what I am doing. I have a custom control that has a ListBox in its template. I have ...
1
vote
1answer
36 views

WPF Resolution Emulation

We have a WPF system in which we are allowing our clients to design a UI interface for their users. One of the main issues we have is that our clients will possibly be designing an interface in one ...
0
votes
1answer
55 views

Can the GroupStyle be defined at runtime for listview?

Here is the scenario. I have a listview which might have thousands of records based on the criteria provided by the end user. After that using a checkbox, user can group records. So, I have group ...
0
votes
1answer
208 views

WPF Set Binding on CommandParameter dynamically in code

I need to dynamically create some TreeViewItems, each of them needs to have a Command bind to DoubleClick Mouse Action. The problem is that i want to pass a parameter to this Command, but I don't know ...
0
votes
3answers
189 views

How to manage with dynamic CheckBox in C# WPF application?

I created a checkbox list with 8 chechboxes added dynamically. The idea of my program is : when a box is checked, a chart appears on my plotter, when i uncheck it, it disappears. My problem is that ...
0
votes
2answers
401 views

WPF: How to dynamically generate ContextMenu

I have ListBox (with SelectionMode=Extended) that has multiple items and I want to to add context menu feature. The problem is how to dynamically create context menu based on some conditions. Eg. I'd ...
0
votes
0answers
81 views

WPF - How to merge dictionaries at runtime?

I have an application that will have numerous configurations (also can be thought of as a plugin model) - all based on a baseline configuration. So my baseline configuration's Views and ViewModels ...
0
votes
1answer
156 views

How to dynamically resize a label inside a WPF application?

I need to know how I could dynamically resize a label in a WPF application. I've already found a sample in this article which has already achieved both dragging and resizing a label at the same ...
0
votes
1answer
135 views

Dynamic event handling - not firing

I'm having issues with dynamically handling the MouseUp event. Test code with issue: WPF: <Window x:Class="WpfApplication1.MainWindow" ...
0
votes
1answer
87 views

How can I find a dynamically created button?

I am making a client/server application that contains a Tic Tac Toe game where two connected clients can play the game. The 3 x 3 grid is made up of 9 dynamically created buttons. When the first ...
0
votes
1answer
374 views

WPF ToolTip Style with dynamic LayoutTransform

I have an app that scales it's UI and I want to scale the ToolTips with it. I have tried doing this: <Style TargetType="{x:Type ToolTip}"> <Setter Property="LayoutTransform" ...
0
votes
2answers
386 views

StackPanel Dynamic Binding of Visibility and IsEnabled Properties via Converters

My small objective is to implement a dynamic on-the-go generation of controls and associate their respective properties, such as Visibility and IsEnabled. The controls must be inserted into the ...
0
votes
2answers
199 views

C# .NET dynamic form controls or wpf templates

In a WPF application, I would like to display a grid of tiles (buttons essentially) using images from a folder location. There could be any different number of images in the folder, so the ...
1
vote
1answer
149 views

Get property type of dynamic object in C# (even when value is null)

I have a DynamicObject wrapper that is basically forwarding property values from another private object instance (amongst other things). But is there any way of returning the property-type dynamically ...
1
vote
2answers
335 views

Failing to add different items in combobox on dynamic radiobutton click

I am working on radiobuttons and combobox in my wpf App. Although I am a C++ developer, I recently moved to C#. My app deals with dynamic generation of the above mentioned components. Basically I have ...
1
vote
1answer
204 views

Failing to generate dynamic textbox on radiobutton click in WPF

I am working on a WPF app where i have to generate 4 radiobuttons first and once I am done with it, I need to generate textboxes and labels on each button click. Generate 4 Radiobuttons with ...
0
votes
1answer
172 views

How do I access a windows control (checkbox) that is created dynamically in a WPF treeview?

I have a WPF Tree View with hierarchical data templates that loads objects and displays them fine. Within the children of the treeview, I am showing the "Name" of the object in the Tree View using a ...
1
vote
1answer
126 views

Program Crashes When Dynamically generated radiobuttons are created in WPF

I am a C++ developer and I recently moved to C#. I am working on a wpf app using MVVM pattern. I have a groupboxbox in my xaml file which I have divided into two columns. One column contains the ...
0
votes
3answers
78 views

Covariance in generic collections

I would like to do this List<anotherclass> ls = new List<anotherclass> {new anotherclass{Name = "me"}}; myGrid.ItemSource = ls; at some other place var d = myGrid.ItemSource as ...
0
votes
1answer
112 views

Failing To set different values in Dynamically Generated UI Components in WPF

I am working on a WPF application where I need to dynamically generate 2 group boxes which have a radio button, textbox and a combobox inside. Well I have come across a tricky situation where values ...
0
votes
1answer
385 views

Dynamically Generate Set of RadioButtons With Different Content in WPF

I am a C++ developer and recently shifted to C#. I am working on a WPF app where I need to dynamically generate 4 radio buttons. I tried to do lot of RnD but looks like this scenario is rare. XAML: ...
1
vote
2answers
139 views

Failing To Update List On Button Click in WPF

I am a C++ developer and i recently shifted to C# WPF. I am working on a WPF App where I am supposed to dynamically generate button, label, textbox and togglebutton. I have done the following: XAMl: ...
1
vote
3answers
270 views

Dynamically generate UI Components using Array of Structures in C#

I am c++ developer and from last week i started working on C# and WPF. I have a very simple query about using structures in my code. I have a label and button in my xaml class which should be ...
0
votes
0answers
133 views

Set Multiple Buttons Content from ViewModel DelegateCommand property [closed]

I have 2 buttons on my View and have to set the buttons Content from ViewModel. I used the famous Delegate Command framework from Miguel Castro's video. When I use it only sets the content for one ...
0
votes
2answers
392 views

Failing To Bind Dynamically Generated Buttons & Textboxes in WPF

I was working on dynamic generation of labels, buttons and Textbox in my WPF application. Well I was successful in dynamically creating them but I am facing one major issue in it. Xaml: <ListBox ...
0
votes
1answer
41 views

Functions for dynamic elements

I have created a set of dynamic elements during run time. How do I define and declare functions for them beforehand? i.e. I will be creating a set of 25 buttons during execution, and assigning ...
0
votes
1answer
179 views

Dynamic generation of UI Components in WPF

Alright this is a tricky situation. I have 2 xaml files in my WPF project, VoltageChannelView.xaml and VoltageView.Xaml, In my VoltageView.xaml I have divided the Grid into 3 rows as follows: ...
0
votes
1answer
85 views

How to assign and access the Name attribute of a WPF checkbox if the checkbox is created dynamically from data?

I have a TreeView and there are multiple layers to the TreeView using HierarchicalDataTemplates. Each TreeViewItem currently displays the "name" of the object that it represents. I now need to add ...
0
votes
0answers
163 views

How to dynamically build a form builder in wpf?

I have been working on an application in WPF for a little while now, but the more research I do the more it seems my approach is fundamentally flawed. Is it possible to create a databind that adds ...
0
votes
0answers
104 views

Error On Dynamic Loading User Control On WPF

I have a strange problem on loading UserControl by WPF. I use this code: private void Loadblock(string filename) { System.Type[] externDLLTypes = Assembly.LoadFrom(filename).GetTypes(); ...
0
votes
0answers
129 views

In C#/WPF - How can I dynamically add a tabitem, defined in xaml (with bindings) in another assembly

I am working on an application that loads a variable number of assemblies at runtime. These assemblies have different internal structures but all support the same interface for so the loading app can ...
0
votes
1answer
146 views

Design Time - Dynamic

can i create a view at design time, using dynamic objects? (with visual studio 2010) for example, or something, is that possible? ...
0
votes
2answers
466 views

creating dynamic textbox in wpf according to location

I'm trying to create dynamically text box in WPF. It is very essential that I will have the flexibility to determine where the text box will be - in pixel level. I have found many answers which use ...
2
votes
2answers
924 views

Dynamic percentage-based width in WPF

maybe you guys can help me figure this out: I have a Dictionary and an ItemsControl that is binded to that dictionary. The Key of each entry determines the content of each Item in the ItemsControl and ...
0
votes
3answers
802 views

Dynamically add child expander

Is there a way to create child expanders like this xaml bellow, at run-time? <Expander Header="Building" IsExpanded="True"> <StackPanel> <Expander Header="Sales"> ...
0
votes
3answers
233 views

adding dynamic buttons wpf in a wrappanel

I am trying to display buttons dynamically on the screen in a wrap panel so that they are laid our nicely without any scrollbars. I have the markup as below, but the scrollbars appear for some reason. ...
-3
votes
2answers
132 views

Create a defined number of Label in a for loop

I want to create dynamically 10 Labels inside a for loop string labelName; for(int i = 0; i < 10; i++) { labeName = "Label" & i; // Creata & Instanciate the label here, How ? }
0
votes
1answer
85 views

Databinding to repeate dynamic object creation

I can't find an exact word to describe my problem (so sorry for that). What I want to do is : Create a Stackpanel which will hold vertically other StackPanels, those StackPanels will be created ...
0
votes
1answer
253 views

Binding a Dynamic Application.Resource WPF - User Control

I have a custom class: class CustomClass { public string Test { get; set; } CustomClass() { this.Test = ""; } } I'm declaring this custom class on a Application.Resources ...
0
votes
0answers
98 views

WPF Master Detail dynamic (two level)

I have a datagrid that displays a list of Items. Each Item contains a List which I want to associate in a Master Detail pattern. The problem is that the ItemDetails are not static and it differs from ...
0
votes
4answers
2k views

WPF Binding dynamic control in code behind to ViewModel

I'm building a custom UserControl in WPF, which has a ViewModel associated. I also want do dynamically make controls in the code behind. But now I'm having problems binding the generated controls with ...
0
votes
0answers
185 views

Bind ContextMenu to the DataGridsRow DataContext

I have a DataGrid bound to a DataView. Now i would like to have for each row a dynamic ContextMenu. Depending of the rows content, there should be various ContextMenuItems in the ContextMenu. How can ...
0
votes
3answers
1k views

Creating a dynamic checkbox list using C#

Im trying to create a list of classes for a degree plan at my university where when classes that have been taken are checked another class gets highlighted to let the user know that class has all of ...
1
vote
2answers
1k views

DataGridColumn Binding with Dynamically Generated Data

I have a large set of data that is generated from a web service in my program. I need to display this data in a DataGrid, but the returned collections of data all have different formats (One may be 3 ...
0
votes
0answers
107 views

Creating Pages at Runtime WPF

I have a program that collects data from the user. The set up is a main window with a frame control whos source is bound to the item selected in a treeview menu. Items can be dynamically added to the ...
1
vote
0answers
162 views

dynamic datatemplate binding in WPF datagridcolumn

i have a datagrid having a column of status. by default it'll display a textblock and the text property is binded with the viwemodel's status property. when the status get changed from status1 to ...

1 2 3 4