Search found 4 matches
- 06 Aug 2024, 10:51
- Forum: General Discussion
- Replies: 1
- Views: 1977
Mouse left button events (bug?)
Hello, i've encountered a weird issue and im not quite sure if its a problem with my code or maybe some bug. When i have some component, a noesis button for example, and i try to catch events on the button with interaction triggers, like so: <Button Style="{StaticResource TransparentButtonStyle...
- 31 Jul 2024, 10:33
- Forum: General Discussion
- Replies: 4
- Views: 2552
Re: Drop shadow effect when rendering to SDL with OpenGL
Doesn't look like the problem is with injecting the offscreen render. This is the flow of the code: void cNoesisScreenManager::renderActiveScreenToFbo(GLuint fbo) { glBindFramebuffer(GL_FRAMEBUFFER, fbo); // Bind the framebuffer glViewport(0, 0, width, height); // Set the viewport to the FBO dimensi...
- 30 Jul 2024, 15:34
- Forum: General Discussion
- Replies: 4
- Views: 2552
Drop shadow effect when rendering to SDL with OpenGL
Hello, I'm running into an issue with the drop shadow effect (this is what ive noticed, there might be other effects or other features) when i render my application to SDL. <TextBlock Text="{Binding Path=Value, RelativeSource={RelativeSource AncestorType={x:Type Slider}}}" Foreground="...
- 18 Jul 2024, 16:40
- Forum: General Discussion
- Replies: 1
- Views: 1194
Raising routed event from ViewModel in MVVM
Hey, my question is as follows: I've created a UserControl (lets call it X) that contains a noesis slider as part of it. The NoesisSlider comes with a routed event named "ValueChanged" that is raised when the value changes. Im using X UserControl in a different UserControl(Y) that function...