I'm building an application that has to work on a Laptop with a touch sensitive screen. As such, I have to increase the size of buttons & scrollbars & such so a police officer can use the controls with their fingers while driving a car at the same time. That means everything needs to be larger to be easily & quickly read. So I did a search today to find an article on how to set the width of the vertical scrollbar in the RadGridView control. I found one & I downloaded the code. The problem is that the compiler is generating messages that read:
1. The tag 'ScrollContentPresenter' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'.
2. The type 'telerik:ScrollContentPresenter' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
I have added the following xmlns tag:
This has no effect,except to change the exact wording of the errors.
What do I need to do to get this to build?
Tony
1. The tag 'ScrollContentPresenter' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'.
2. The type 'telerik:ScrollContentPresenter' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built.
I have added the following xmlns tag:
xmlns:tl="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView"
This has no effect,except to change the exact wording of the errors.
What do I need to do to get this to build?
Tony