1
vote
2answers
19 views
Programmatically adding buttons - Problem with subscription to a mouse event
Im adding a list of buttons in code and also subscribing to their mouseleave event. For each button i subcribe to the event with an anonymous function, the problem is that when I r …
0
votes
0answers
10 views
WPF Storyboard does not pause
Hi All,
I have a very simple Storyboard with an Int32Animation that targets a custom DP on my class.
I have an OnChanged callback for my DP, that does a Console.WriteLine("Curren …
0
votes
2answers
20 views
Open dialog in WPF MVVM
I have an application that need to open a dialog from a button where the user enters some information.
At the moment I do it like this (which works fine)
The button click genera …
0
votes
1answer
7 views
WPF Menu disappears when nested too deeply
I'm trying to create a nested menu hierarchy from the main menu bar. For example, the main menu bar would contain a "Goto" menuitem that could be navigated as "Goto" -> "Chapter" …
0
votes
0answers
5 views
Adding Geometry objects data wpf
Just wondering if this is possible in wpf,
Say we have a Path object p1 with geometry = g1 (same as p1.Data).
Similarly if we have another Path object p2 with geometry = g2 (same …
0
votes
2answers
23 views
WPF - It is possible to get all UI controls with their values
It is possible in WPF to get all UI controls with their values? In example i have some window with some textboxes and in another window I want to get entered values from the first …
0
votes
1answer
8 views
Activity Databinding in wf 4.0
Hi there,
i want to display some datatypes in a combobox. the datatypes are wrapped in the following class:
public class TDataTypeBinder: INotifyPropertyChanged
{
private str …
1
vote
1answer
33 views
Where is the data for Properties.Settings.Default saved?
In my WPF application, I click on Settings.settings in the Solution Explorer and enter a StringCollection variable with a User scope:
in my app.config I see that they are saved …
0
votes
2answers
7 views
WPF: TemplateBinding to StrokeThickness of Shape does not work?
Looks like the following Ellipse in ControlTemplate does not get the BorderThickness, but why?
<Window.Resources>
<ControlTemplate x:Key="EllipseControlTemplate" Targ …
0
votes
2answers
9 views
Is it possible to use XamlReader from a XAML file to load in a block of XAML text?
I use the following DataTemplate in many controls:
<pages:BasePageManageItems x:Class="TestApp.Pages.PageManageAddresses"
xmlns="http://schemas.microsoft.com/winfx/2006/xam …
4
votes
1answer
54 views
What is the best way to reuse blocks of XAML?
I've got many user controls like this:
PageManageCustomers.xaml.cs:
public partial class PageManageCustomers : BasePage
{
...
}
which inherit from:
PageBase.cs:
public class …
0
votes
0answers
6 views
UserControl (Add listview GridViewColumn from another user control)
Hi
I want to add gridview column to a listview which resides in an usercontrol from another Windows screen (Parent).
Example;
<Canvas>
<StackPanel Height="100" Wid …
0
votes
1answer
12 views
Prism - Conditional navigation
I'm using Prism for navigation in my Wpf application. I have a few modules, and each of them is registering themselves in a main menu through common commands sent using the IoC con …
0
votes
2answers
22 views
Listing Properties / Checking if a Property is ReadOnly
Hi everyone!
I'm faced with a couple of problems in VB.net: I have a series of objects, which properties I'm displaying in a grid for the user to edit.
My first problem is: how d …
2
votes
3answers
38 views
How can I combine MVVM and Dependency Injection in a WPF app?
Can you please give an example of how you would use (your favorite) DI framework to wire MVVM View Models for a WPF app?
Will you create a strongly-connected hierarchy of View Mod …
