Search found 12 matches

  • 1
  • 2
by samrrr
17 Apr 2023, 10:36
Forum: General Discussion
Replies: 3
Views: 2341

Re: Copy/Paste Commands in XAML

With ApplicationCommands. this work in noesis thanks.

I dont know this bug on not. If you know this a bug 100% then you can post in bugtracker.
by samrrr
06 Apr 2023, 11:23
Forum: General Discussion
Replies: 3
Views: 2341

Copy/Paste Commands in XAML

<TextBox.ContextMenu> <ContextMenu> <MenuItem Header="{Binding Source=#Translatable:MenuCut, Converter={StaticResource LocalizationConverter}}" Command="Cut"> </MenuItem> <MenuItem Header="{Binding Source=#Translatable:MenuCopy, Converter={StaticResource LocalizationConvert...
by samrrr
22 Dec 2022, 07:52
Forum: General Discussion
Replies: 6
Views: 884

Re: Is possible do C++: public override UIElement Child

I see Child functions not virtual, i cant override its by simple virtual func.
    /// Gets or sets child element
    //@{
    UIElement* GetChild() const;
    void SetChild(UIElement* child);
    //@}
by samrrr
20 Dec 2022, 21:46
Forum: General Discussion
Replies: 6
Views: 884

Re: Is possible do C++: public override UIElement Child

I try extend Border like this: // https://stackoverflow.com/questions/741956/pan-zoom-image public class ZoomBorder : Border { public override UIElement Child { get { return base.Child; } set { if (value != null && value != this.Child) this.Initialize(value); base.Child = value; } } public v...
by samrrr
09 Dec 2022, 15:02
Forum: General Discussion
Replies: 6
Views: 884

Is possible do C++: public override UIElement Child

C# is public override UIElement Child { get { return base.Child; } set { if (value != null && value != this.Child) this.Initialize(value); base.Child = value; } } How do same in С++?
by samrrr
19 Sep 2022, 21:21
Forum: General Discussion
Replies: 3
Views: 571

Re: How add page in page?

This works thanks.
by samrrr
16 Sep 2022, 16:16
Forum: General Discussion
Replies: 3
Views: 571

How add page in page?

I have 2 pages.
Page1 with some grid.
Page2 with some elements.

Gui in cpp.
How add page2 to page1 and get pointers of elements in internal page2?
by samrrr
08 Sep 2022, 10:10
Forum: General Discussion
Replies: 6
Views: 669

Re: How disable font subpixel blue-red pixels?

Thanks i found change
view->SetFlags(Noesis::RenderFlags_PPAA | Noesis::RenderFlags_LCD);
to
view->SetFlags(Noesis::RenderFlags_PPAA);
disable red-blue pixels.
by samrrr
01 Sep 2022, 18:55
Forum: General Discussion
Replies: 6
Views: 669

Re: How disable font subpixel blue-red pixels?

I do not use any integration. I simple try disable red-blue pixel in samples. But see no effect.
by samrrr
01 Sep 2022, 18:53
Forum: General Discussion
Replies: 6
Views: 669

Re: How disable font subpixel blue-red pixels?

I use Windows x64 and DX11.
  • 1
  • 2