Search found 7 matches

by Verfin
30 Jun 2016, 09:05
Forum: General Discussion
Replies: 5
Views: 2678

Re: ProgressBar Orientation doesn't work?

No biggie. Just posted to let you know.
by Verfin
27 Jun 2016, 15:39
Forum: General Discussion
Replies: 5
Views: 2678

ProgressBar Orientation doesn't work?

From the samples folder, I changed the <ProgressBar Grid.Column="1" Width="150" Height="18" Value="50"> into <ProgressBar Orientation="Vertical" Grid.Column="1" Width="150" Height="18" Value="50"> and tried the...
by Verfin
20 Jun 2016, 13:20
Forum: General Discussion
Replies: 1
Views: 2216

MouseUp on "empty" Border/Grid does not fire

Noesis seems to have a different behaviour than wpf when it comes to visually empty containers: <Border BorderBrush="Black" BorderThickness="1" MouseUp="Border_MouseUp"> <Grid MouseUp="Border_MouseUp"> <TextBlock /> </Grid> </Border> in wpf the Border_MouseUp ...
by Verfin
17 Jun 2016, 09:34
Forum: General Discussion
Replies: 3
Views: 2402

Re: C++ How to properly cast PropertyChangedEventArgs.newVal

Works now, thank you!
by Verfin
14 Jun 2016, 09:59
Forum: General Discussion
Replies: 3
Views: 2402

C++ How to properly cast PropertyChangedEventArgs.newValue

As the OnPropertyChanged(DependencyPropertyChangedEventArgs& arg) arg.newValue is a const void pointer, and I don't know what type it is when the property is ForegroundProperty, I can't clone it and set it as a new foreground. How do I fix this: if (e.prop == ForegroundProperty) { //Brush* brush...
by Verfin
09 Jun 2016, 08:33
Forum: General Discussion
Replies: 2
Views: 1503

Re: C++ implementation of templated composite interfaces

I see. Thank you.
by Verfin
07 Jun 2016, 12:02
Forum: General Discussion
Replies: 2
Views: 1503

C++ implementation of templated composite interfaces

I've done a C# wpf GUI that I'm trying to convert to C++. It would be nice to maintain two identical code pieces, so I'm trying to implement composite interface pattern. Eg. template <class T> class IIndexView : public IView, public IIndexControl<T>, public IControlParent { }; How do I Implement the...