Search found 36 matches
- 01 Oct 2022, 11:32
- Forum: General Discussion
- Replies: 6
- Views: 273
Re: Recommendations for a slide in / slide out docking panel containing drag and drop widgets
Hello again @sfernandez, and again I want to express my gratitude for you putting together this excellent example. I'm still looking over the code and trying my best to understand how it fits together. I have high level questions regarding customizing this type of slide in/out tabbed panel. So in my...
- 01 Oct 2022, 05:50
- Forum: General Discussion
- Replies: 14
- Views: 1549
Dynamically adding a new widget in C++ code, and then using FindName() to get it
I had a tricky time finding resources about adding a new UI Element in code, but eventually found this approach: auto thing = Noesis::MakePtr<Noesis::Rectangle>(); thing->SetName("Rigger"); thing->SetWidth(50); thing->SetHeight(50); thing->SetFill(Noesis::Brushes::Red()->Clone()); mXamlGri...
- 01 Oct 2022, 05:43
- Forum: General Discussion
- Replies: 6
- Views: 273
Re: Recommendations for a slide in / slide out docking panel containing drag and drop widgets
Hey @sfernandez
Wow - This is amazing! Thank you so much for putting together this example. It does indeed look like the type of design I was looking for. I'll make sure to study closely.
I'll let you know how I get on.
Wow - This is amazing! Thank you so much for putting together this example. It does indeed look like the type of design I was looking for. I'll make sure to study closely.
I'll let you know how I get on.
- 01 Oct 2022, 05:39
- Forum: General Discussion
- Replies: 8
- Views: 621
[Solved] Re: Using blend (view designer) with xaml files in Visual Studio
I'll assume there's no strong interest in replicating the null reference error in Blend, for now.
Thanks again for all the help so far.
Much appreciated,
Gazoo
Thanks again for all the help so far.
Much appreciated,
Gazoo
- 24 Sep 2022, 10:26
- Forum: General Discussion
- Replies: 6
- Views: 273
Re: Recommendations for a slide in / slide out docking panel containing drag and drop widgets
Minor update. I've made some head-way re. a slide in/out panel. I was hoping this could potentially be implemented in xaml only, but I've come to realize that the logic required for this to work properly is simply too complex for a mark-language like xaml (happy to hear counter points). I did find a...
- 24 Sep 2022, 03:31
- Forum: General Discussion
- Replies: 8
- Views: 621
Re: Using blend (view designer) with xaml files in Visual Studio
jsantos -- I appreciate you noting the NoesisGui example projects. I am diligently looking through them as best I can. I've succesfully gotten both a C# project and C++ project to share and edit the same .xaml file. I have not had any success hot-reloading a running C++ application and changing the ...
- 23 Sep 2022, 07:43
- Forum: General Discussion
- Replies: 6
- Views: 273
Recommendations for a slide in / slide out docking panel containing drag and drop widgets
Hey all, I'm hoping someone can point me towards the right widgets to use to replicate behavior that exists in my current GUI. I'm trying to create a set of docked tabs on any side of the application interface, that the user can then click which will expand/reveal a tab filled with elements that can...
- 23 Sep 2022, 07:31
- Forum: General Discussion
- Replies: 8
- Views: 621
Re: Using blend (view designer) with xaml files in Visual Studio
Thanks for the reply fllorens. I've managed to build an include a C# WPF project alongside my native C++ project. My understanding is that this is apparently required in order to access Blend/designer view when modifying the xaml file. I have 2 follow-up questions. 1. The xaml file that I use to loa...
- 23 Sep 2022, 03:12
- Forum: General Discussion
- Replies: 7
- Views: 216
Re: Passing keyboard input to NoesisGUI from other Framework
Gotcha - thank you very much for all the answers.
- 22 Sep 2022, 06:34
- Forum: General Discussion
- Replies: 8
- Views: 621
Using blend (view designer) with xaml files in Visual Studio
Hey yall, A rookie question about using xaml and blend in Visual Studio. I've included a xaml file which I load into NoesisGUI and display. I'd now like to manipulate this via blend, but Visual Studio does not appear to let me access the 'designer' with this xaml file alone. I.e. I try to right clic...