Search found 24 matches

by Khonan
19 Mar 2019, 08:10
Forum: General Discussion
Replies: 3
Views: 2808

Re: Control MouseDoubleClick

Great !

Do you have a release date for 2.2.1 ? :p
by Khonan
18 Mar 2019, 17:39
Forum: General Discussion
Replies: 3
Views: 2808

Control MouseDoubleClick

Hi, with an all new annoying question :) MouseDoubleClick Event on Controls seems not working like release 2.1 (and wpf, i checked) I apply a : ListView.MouseDoubleClick += Func; My Func is never called. It seems a lot of things have changed in control.cs I already dropped an issue in bugTracker, bu...
by Khonan
15 Mar 2019, 15:43
Forum: General Discussion
Replies: 7
Views: 3413

Re: ScrollViewer in 2.2.0 Today's release

Solved, PreviewMouseWheel is good : ListBox lv = (Noesis.ListBox)FindName("itListViewFiles"); lv.PreviewMouseWheel += MouseWheelToParentScrollViewer; Get the Parent ScrollViewer and raise the Mousewheel event for him: public void MouseWheelToParentScrollViewer(object sender, MouseWheelEven...
by Khonan
15 Mar 2019, 15:29
Forum: General Discussion
Replies: 7
Views: 3413

Re: ScrollViewer in 2.2.0 Today's release

Found to make it in WPF : Do not use ListView.MouseWheel but PreviewMouseWheel Now I've to figure out how to translate "var eventArg = new MouseWheelEventArgs(e.MouseDevice, e.Timestamp, e.Delta);" to Noesis and I'll be good. public MainWindow() { InitializeComponent(); itListViewFiles.Pre...
by Khonan
15 Mar 2019, 15:07
Forum: General Discussion
Replies: 7
Views: 3413

Re: ScrollViewer in 2.2.0 Today's release

Just made a test in a WPF app and I got the same behavior as 2.2.0.

itListViewFiles.MouseWheel += ItListViewFiles_MouseWheel; as the same effect with WPF too.

So it was working with 2.1 but it was luck :p

I'll post a work around here as soon I find.

Thanks for the help ;)
by Khonan
15 Mar 2019, 14:45
Forum: General Discussion
Replies: 7
Views: 3413

Re: ScrollViewer in 2.2.0 Today's release

The Listview is not supposed to scroll but grow as much as needed. What I was expecting is the outer ScrollViewer to scroll its content (And working that way prior 2.2.0) The ScrollViewer will have to scroll multiple "Expander" with ListView inside (with no height limit) With 2.2.0 SwrollV...
by Khonan
15 Mar 2019, 12:17
Forum: General Discussion
Replies: 7
Views: 3413

Re: ScrollViewer in 2.2.0 Today's release

Tried to hook the MouseWheel Event of the ListView
m_ListView.MouseWheel += MouseWheelToParentScrollViewer;
but it's never triggered... Might Explain..
by Khonan
15 Mar 2019, 10:59
Forum: General Discussion
Replies: 7
Views: 3413

ScrollViewer in 2.2.0 Today's release

Hi, Updating to 2.2.0 today's release and I got the following behaviour : ScrollViewer is responding to the mousewheel only if the mouse is over the ScrollViewer. Rolling mousewheel while over a child (listview) won't make it scroll anymore (Was working with the previous release) <Grid Grid.Column=&...
by Khonan
08 Mar 2019, 13:46
Forum: General Discussion
Replies: 3
Views: 2501

Re: Changing GridViewColumn Header programmatically

Thanks,

I'm on my way.
by Khonan
08 Mar 2019, 09:58
Forum: General Discussion
Replies: 3
Views: 2501

Re: Changing GridViewColumn Header programmatically

Any Clue ?

:p