
Andrew Espinosa
Top achievements
Rank 1
Andrew Espinosa
asked on 18 Jan 2010, 09:49 PM
I am prototyping a Windows WPF application using Windows 7's built-in multitouch gestures. I'd like to use telerik controls but before making the purchase I'd like to know if using the c# source will allow for me to capture gesture messages?
10 Answers, 1 is accepted
0
Hello Andrew Espinosa,
Thanks for your question.
We cannot give 100% guarantee that updating the source code of our controls to support multi-touch gestures would be an easy and straightforward task. Actually, we are in the early stage of researching the matter and therefore, we are not sure on the estimated costs and efforts to accomplish this, yet. What I can tell you for sure is that we will be working on multi-touch support, however, considering the tasks we have already started, we will be able to work on multi-touch support during Q2 2010 at the earliest.
Kind regards,
Nick
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Thanks for your question.
We cannot give 100% guarantee that updating the source code of our controls to support multi-touch gestures would be an easy and straightforward task. Actually, we are in the early stage of researching the matter and therefore, we are not sure on the estimated costs and efforts to accomplish this, yet. What I can tell you for sure is that we will be working on multi-touch support, however, considering the tasks we have already started, we will be able to work on multi-touch support during Q2 2010 at the earliest.
Kind regards,
Nick
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0

graham
Top achievements
Rank 1
answered on 02 Jun 2010, 04:10 PM
Dear Telerik Team,
I was wondering if there is an update at all on the level of gesture support in the WinForm or WPF controls at this stage or whether you will be releasing new controls/updates in this area?
Cheers!
I was wondering if there is an update at all on the level of gesture support in the WinForm or WPF controls at this stage or whether you will be releasing new controls/updates in this area?
Cheers!
0
Hello graham,
We will most probably start planning such development after Q2. Once we have some certain talks/discussion, I will be able to reveal more details.
Best wishes,
Nick
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
We will most probably start planning such development after Q2. Once we have some certain talks/discussion, I will be able to reveal more details.
Best wishes,
Nick
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0

Eric
Top achievements
Rank 1
answered on 12 Nov 2010, 03:18 PM
Telerik Team:
Is there any update on when support for multi-touch is going to be incorporated into WPF controls?
Best Regards,
Eric
Is there any update on when support for multi-touch is going to be incorporated into WPF controls?
Best Regards,
Eric
0
Hello Eric,
Nick
the Telerik team
Thanks for your question.
We did not manage to work on this task as there were other priority tasks we needed to complete before Q3. In other words our controls are touch-friendly in terms of the out-of-the-box touch-behavior that WPF provides.
Nick
the Telerik team
Browse the videos here>> to help you get started with RadControls for WPF
0

Asentech
Top achievements
Rank 1
answered on 05 Jan 2011, 06:00 PM
Have me made any progress on the multi touch application.
Thanks
Jithin
Thanks
Jithin
0
Hello Andrew Espinosa,
Nick
the Telerik team
Not yet. Now that Windows Phone is out we will focusing our efforts and energy in this direction at some point. Actually we do have the multi-touch gesture in our product backlog, but its priority is low, due to the low demand of the market. If this changes we will definitely invest heavily in that area.
Best wishes,Nick
the Telerik team
Let us know about your Windows Phone 7 application built with RadControls and we will help you promote it. Learn more>>
0

Sergej Mertens
Top achievements
Rank 1
answered on 17 Feb 2011, 09:44 AM
+1 vote from me.
Especially I need touch-scrolling in RadGridView.
Are there any methods on the grid I can use for programatically scrolling the grid when I consume touch events by myself (e.g. "scroll n lines down" or "page down"? I didn't find some on Version 2010.3.1110.40.
Greetings,
Daniel
Especially I need touch-scrolling in RadGridView.
Are there any methods on the grid I can use for programatically scrolling the grid when I consume touch events by myself (e.g. "scroll n lines down" or "page down"? I didn't find some on Version 2010.3.1110.40.
Greetings,
Daniel
0
Hi Daniel Schilling,
There are several methods that you can use. Here is a list:
// scrolls to specified data item
this
.playersGrid.ScrollIntoView(dataItemTOScroll)
// or simply use the ScrollViewer
var scrollViewer =
this
.playersGrid.ChildrenOfType<GridViewScrollViewer>().First();
scrollViewer.ScrollToBottom();
scrollViewer.ScrollToTop();
scrollViewer.ScrollToVerticalOffset(30.0);
Regards,
Milan
the Telerik team
Registration for Q1 2011 What’s New Webinar Week is now open. Mark your calendar for the week starting March 21st and book your seat for a walk through all the exciting stuff we ship with the new release!
0

Sergej Mertens
Top achievements
Rank 1
answered on 01 Mar 2011, 02:31 PM
Hi,
thanks for your help and you pointed me to the right direction:
In WPF4 many controls in .NET base are touch-enabled by default, e.g ScrollViewer. You only have to enable interpretation of gestures in loaded event:
Thanks,
Daniel
thanks for your help and you pointed me to the right direction:
In WPF4 many controls in .NET base are touch-enabled by default, e.g ScrollViewer. You only have to enable interpretation of gestures in loaded event:
private
void
View_Loaded(
object
sender, RoutedEventArgs e)
{
var scrollViewer =
this
.grid.ChildrenOfType<GridViewScrollViewer>().First();
scrollViewer.PanningMode = PanningMode.VerticalOnly;
this
.grid.ManipulationBoundaryFeedback += (s, args) => args.Handled =
true
;
}
Thanks,
Daniel