Search found 110 matches
- 18 Dec 2020, 18:08
- Forum: General Discussion
- Replies: 7
- Views: 1099
Re: NOESIS Samples - Localization and language specific fonts
Is there any way to bind this to something static that could be notified? I was trying to keep all of this out of my view models.
- 18 Dec 2020, 02:39
- Forum: General Discussion
- Replies: 7
- Views: 1099
Re: NOESIS Samples - Localization and language specific fonts
Sorry to bump this thread, but I had the same idea with using a converter. Is there any way to update all bindings that use the loc converter? My loc service has a static event I can listen to, but I'm not sure if you could with just a converter. I think I could create a behavior that does this, but...
- 02 Dec 2020, 21:05
- Forum: General Discussion
- Replies: 3
- Views: 252
Re: Tooltip's Horizontal/Vertical offset seems to not work the first time the tooltip is created.
Ah, the size was the problem. I listened to SizeChanged & updated the position off of that, thanks.
- 30 Nov 2020, 17:43
- Forum: General Discussion
- Replies: 3
- Views: 252
Tooltip's Horizontal/Vertical offset seems to not work the first time the tooltip is created.
You can see a video of the problem here: https://files.catbox.moe/an40mv.mp4 I created a tooltip that follows the cursor. However, as you can see in the video, whenever I close and reopen the view the tooltip's position will not update at first. private void SmartToolTip_Opened(object sender, Routed...
- 19 Nov 2020, 18:43
- Forum: General Discussion
- Replies: 2
- Views: 142
Re: How to stop button mid press?
Ah, I was trying to use CaptureMouse() but it didn't seem to work, so I have been using my own flag for when the mouse is panning. I will try to use it again.
- 17 Nov 2020, 20:16
- Forum: General Discussion
- Replies: 2
- Views: 142
How to stop button mid press?
I have a group of buttons in a canvas that can be panned. If a button is being pressed and the mouse moves, I want the button to lose focus and not be pressed on mouse up. I can't seem to find a way to just stop a button from being pressed.
- 30 Oct 2020, 09:24
- Forum: General Discussion
- Replies: 7
- Views: 1333
Re: NineSlice control does not immediately work correctly.
Nevermind, I found it! It displays correctly now, thanks.
- 30 Oct 2020, 09:19
- Forum: General Discussion
- Replies: 7
- Views: 1333
Re: NineSlice control does not immediately work correctly.
No sorry, I understand that. I meant: why is my template null to begin with? Why can't the nine slice show in the editor?
> Control display options
Interesting, I haven't seen this before. I will try this.
> Control display options
Interesting, I haven't seen this before. I will try this.
- 28 Oct 2020, 04:43
- Forum: General Discussion
- Replies: 7
- Views: 1333
Re: NineSlice control does not immediately work correctly.
That seems to work! Thanks for the help. Do you know why the control doesn't work in the editor? Is there anything I can change to fix this? I swear a previous version of this control was working in the editor when testing it in WPF, but I haven't been able to get it to work since then.
- 28 Oct 2020, 04:36
- Forum: General Discussion
- Replies: 2
- Views: 625
Re: How to check if a scrollviewer's scrollbar is pressed or not?
I have a continuous loading of messages when the scrollviewer gets to a certain point at the top, but this can't happen if the bar is pressed. I can try to listen to these handlers and track if it's being dragged on my own, thanks.