I'm using a RadToolBar in an Excel task pane. When the task pane is sized to move controls to the overflow, the overflow button will enable but clicking the overflow button will not display the controls. I've further narrowed the problem to when the WPF user control is converted to an INativeControlHandle and back before adding it to the task pane.
I've built a sample project to demonstrate the problem. The sample also includes a regular WPF ToolBar which does not have the same problem. (remove the .jpg extension from the .zip file)
Note that the same code hosted in a Word addin will function correctly as will a generic WinForms application.
Any advice would be appreciated.
Hello everyone!
Is there a way to scroll to active cell in UI from codebehind? My spreadsheet contains big amount of data and needs some sort of navigation.
I have to react to a key-down-event in a datacell of a GridView. So in XAML I have defined the following:
<
telerik:GridViewDataColumn
Header
=
"Bezeichnung"
DataMemberBinding
=
"{Binding Bezeichnung}"
>
<
i:Interaction.Triggers
>
<
i:EventTrigger
EventName
=
"KeyDown"
>
<
GalaSoft_MvvmLight_Command:EventToCommand
Command
=
"{Binding RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ListBox}}, Path=DataContext.OpenNachschlagText}"
/>
</
i:EventTrigger
>
</
i:Interaction.Triggers
>
</
telerik:GridViewDataColumn
>
With this snippet of code there are no errors in the output-console (no "DataContext.OpenNachschlagText not found" or so). But my ICommand (RelayCommand in my case) is not called when I press a key on the keyboard.
What is wrong or better: how can I react on a key, for example the F5 key?
Thanks in advance
Marcus
Hello,
When I update a named range programmatically I am forced to remove the name and re-add it with the updated value. This is fine as a workaround but any cells that referred to the name can have strange visuals depending on the new value. For example, I have a named range 'Test' in which RefersTo ​is '=1'. I set A1 to be =Test and it displays 1 as expected. If I remove the name and re-add a new name 'Test' with RefersTo '=1000', A1 will extend into the neighboring cell.
Hi,
Do you have a roadmap for the 3D support with the RadMap Control ? And for 2016, what is the next features for the RadMap, full support Geojson ?
Others providers has this option:
Thank you
Hi,
I was trying to use the new feature to bind to the ChartView's AnnotationProvider.Source, and one of the requirements I have goes through changing the default display of the Label for the CartesianGridLineAnnotation.
I have an example project zip @ https://www.dropbox.com/s/cj06tc8yhd7x0v5/AnnotationTypes-modified.zip?dl=0 (and picture) of the problem I'm facing: When I statically define the annotation in the Annotations collection of the ChartView, I have no problems whatsoever to change the LabelDefinition in order to achieve the vertical text and whatever else we need from changing this property.
When I attempt to change it through styles however, nothing that we "set" on this property takes effect.
From what I understood, I need to use styles in order to change the generated Annotation controls on the AnnotationProvider through the AnnotationDescriptor.
I might obviously be overlooking or misunderstanding something.
Thank you in advance,
David