Search found 26 matches

by danrer
12 Jan 2023, 13:24
Forum: General Discussion
Replies: 4
Views: 998

Re: lepoco/wpfui

I just like the visual style, and I would like to use it.
by danrer
09 Jan 2023, 18:13
Forum: General Discussion
Replies: 4
Views: 998

Re: lepoco/wpfui

Thanks for the reply!
by danrer
07 Jan 2023, 17:39
Forum: General Discussion
Replies: 4
Views: 998

lepoco/wpfui

Is it realistic to use lepoco/wpfui in NoesisGui if you rewrite all the classes in C++?

I would ask you to look at their code, maybe there are many restrictions that will not work with NoesisGui.

https://github.com/lepoco/wpfui
by danrer
15 Nov 2022, 19:08
Forum: General Discussion
Replies: 4
Views: 551

Re: MipMap level problem

Unfortunately I didn't have any free time, but as soon as I do, I'll check it out right away. Thank you for not forgetting!
by danrer
03 Nov 2022, 10:33
Forum: General Discussion
Replies: 4
Views: 551

Re: MipMap level problem

Okay, I'll check and let you know the result.
by danrer
30 Oct 2022, 20:24
Forum: General Discussion
Replies: 4
Views: 551

MipMap level problem

As soon as my textures start to have more than one mipmap level, problems happen to them. The picture that works has one level, and the one that is broken has five. I use dx11, and I see no problem creating a mipmap.
by danrer
11 Oct 2022, 17:03
Forum: General Discussion
Replies: 5
Views: 615

Re: ContextMenu incorrect behavior

Bug fixed, one of the components was not registered
by danrer
11 Oct 2022, 11:49
Forum: General Discussion
Replies: 5
Views: 615

Re: ContextMenu incorrect behavior

Whenever you see a pink template rendered instead of the normal control, it means that control doesn't have a valid template and it is using our internal debug templates. This happens when you define a local style that doesn't extend your application styles. In this example you should probably do t...
by danrer
10 Oct 2022, 16:22
Forum: General Discussion
Replies: 5
Views: 615

Re: ContextMenu incorrect behavior

Perhaps there is an example of how to do it dynamically?
by danrer
07 Oct 2022, 21:50
Forum: General Discussion
Replies: 5
Views: 615

ContextMenu incorrect behavior

When I try to implement my MenuItem I get behavior different from c# class IContectMenuItem : public Noesis::NotifyPropertyChangedBase { public: IContectMenuItem() {} IContectMenuItem(const wchar_t* header, MenuItemState menuState) { IContectMenuItem(WCharToUtf8(header).c_str(), menuState); } IConte...