Hi,
If I have an appointment outside the vertical viewable area, ScrollIntoView ensure that the appointment become visible but not in horizontal, I have to use the horizontal scrollbar to see my appointment...
Thank's
Alain
When the IsBackStageOpen has TwoWay binding to a boolean in the ViewModel, and the boolean's value is true, the Backstage misbehave.
This is the code of the VM
namespace
IsBackstageOpenBug
{
public
class
MainViewModel : ViewModelBase
{
private
bool
_isBackStageOpen =
true
;
public
bool
IsBackStageOpen
{
get
{
return
_isBackStageOpen;
}
set
{
_isBackStageOpen = value;
OnPropertyChanged(
"IsBackStageOpen"
);
}
}
}
}
This is the XAML
<
telerik:RadRibbonWindow
x:Class
=
"IsBackstageOpenBug.MainWindow"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
Title
=
"MainWindow"
Height
=
"350"
Width
=
"525"
>
<
Grid
>
<
telerik:RadRibbonView
Name
=
"MainRibbon"
IsBackstageOpen
=
"{Binding IsBackStageOpen, Mode=TwoWay}"
ApplicationName
=
"My App"
telerik:KeyTipService.IsKeyTipsEnabled
=
"True"
MinimizeButtonVisibility
=
"Visible"
Foreground
=
"Black"
telerik:StyleManager.Theme
=
"Windows7"
IsMinimized
=
"False"
>
<
telerik:RadRibbonView.ApplicationButtonContent
>
<
TextBlock
Text
=
"Project"
VerticalAlignment
=
"Center"
HorizontalAlignment
=
"Center"
/>
</
telerik:RadRibbonView.ApplicationButtonContent
>
<
telerik:RadRibbonView.Backstage
>
<
telerik:RadRibbonBackstage
telerik:KeyTipService.AccessText
=
"F"
>
<
telerik:RadRibbonBackstageItem
Header
=
"New"
telerik:KeyTipService.AccessText
=
"N"
/>
<
telerik:RadRibbonBackstageItem
Header
=
"Open"
/>
</
telerik:RadRibbonBackstage
>
</
telerik:RadRibbonView.Backstage
>
<
telerik:RadRibbonTab
Foreground
=
"Black"
Header
=
"Edit"
telerik:KeyTipService.AccessText
=
"E"
>
<
telerik:RadRibbonGroup
Header
=
"Clipboard"
/>
</
telerik:RadRibbonTab
>
</
telerik:RadRibbonView
>
</
Grid
>
</
telerik:RadRibbonWindow
>
The ribbonview does open in backstage, as expected, but clicking on the "Edit" tab, selects that tab, but leaves the backstage opened.
Hi,
is there any way to select and remove a single dependency? (like rightclick->remove)
it's weird that i can link two tasks together but then it's not possible to remove that link
digging in the documentation i haven't find anything on how to select an existing dependency on the timeruler part...
I only found this example but it hasn't been updated since march and crashes when i try to remove a dependency from a task (exception message: Dispatcher processing has been suspended, but messages are still being processed.)
any help would be appreciatedHello,
I'm trying to select rows, columns, and cells like Excel does. There was a post over 5 years ago indicating this would be possible in the future. http://www.telerik.com/forums/excel-like-cell-row-and-column-selection Is there a way to select like Excel does now?I have the following set in XAML, but row selection and column selection do not work using this. SelectionMode="Extended" SelectionUnit="Mixed" Is there now a way to do this?
Thanks,
Scott
Hello,
with the Office2013 theme, the left and right margings of a cell don't have the same width, the right margin being shorter. This makes strange looking when a right aligned column is followed by a left aligned column.
Having a problem where my marker is showing up behind the background on my gauge range. Here is my code.
<telerik:VerticalLinearScale IsInteractive="False" Max="100" Min="0" Foreground="Black" >
<telerik:GaugeRange Min="0" Max="80" Background="Green"></telerik:GaugeRange>
<telerik:GaugeRange Min="80" Max="100" Background="Red"></telerik:GaugeRange>
<telerik:LinearScaleMarker x:Name="indicator" telerik:LinearScale.RotateForVertical="True" telerik:ScaleObject.Location="OverCenter" Value="{Binding Path=myEngine.PercentLoaded}" />
</telerik:VerticalLinearScale>
Everything works fine, its just that the marker is behind the gauge range backgrounds.
Hi,
We are using various third party software packages. We have come across an issue which causes a system crash and we believe it may be because some third party is using an older version of the .Net Framework. We are currently targeting .Net 4.5.
We are using Telerik's UI for WPF Product Version 2015.1.0406.40. I would be helpful to know which >Net framework this is dependent on.
Thanks in advance for your help.
Jonathan Manoharan
Hello
I try to custom connection caps, you can find in attach files my goals and what i did.
I try 2 solutions with a custom RadDiagramConnection :
- Override CreateSourceCapGeometry and Target : i didn't find a way to add a text into a pathFigure (not like geometryGroup and FormattedText)
- Override CreateGeometry : I works fine but the style of the line (like StrokeDashArray) is also use for the caps (that's why the text look like weird).
Do you think it's possible to do that? Is there any other solution?
Thank you in advance.
Is there some kind of property on the RadGridView that will make it scroll to the bottom of the list when a new record is added? I'm binding the "ItemsSource" to an ObservableCollection. Then, in my ViewModel, I'm adding rows. I'd like the grid to scroll to the bottom automatically, rather than requiring me to add the record and then execute a "ScrollToEnd" on the "GridViewScrollViewer". If there is no such property, what would be the best event to tie into to make this happen (i.e. so that I could contain this code to the View rather than contaminate my ViewModel)? Yes, I could also add an event handler to the CollectionChanged of the ObservableCollection, but that that feels redundant somehow. (Also, from my testing, it leaves the grid one row behind, since it fires before the row is actually rendered to the grid.)
Thanks!
Brad.