or
Hello,
I have a problem with HyperlinkButton and his static method: OnRequestNavigate.
If my URI contains absolute path to file with polish diacritic characters, Process.Start throws Win32Exception (NativeErrorCode: 2).@”C:\zażółć gęsią jaźń.xlsx”Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));Process.Start(new ProcessStartInfo(e.Uri.LocalPath));Class MainWindow Public Sub New() ' This call is required by the designer. InitializeComponent() ' Add any initialization after the InitializeComponent() call. RadPropertyGrid1.Item = New Employee End SubEnd ClassClass Employee Public Property Name As String Public Property Position As PositionType <Flags()> _ Public Enum PositionType As Integer All = -1 None = 0 Engineer = 1 Sales = 2 Marketing = 4 Management = 8 End EnumEnd Class| <telerikNavigation:RadTileView ItemsSource="{Binding Items}"> |
| <telerikNavigation:RadTileView.ItemTemplate> |
| <DataTemplate> |
| <TextBlock Text="{Binding Name}" Style="{StaticResource HeaderTitle}"/> |
| </DataTemplate> |
| </telerikNavigation:RadTileView.ItemTemplate> |
| <telerikNavigation:RadTileView.ContentTemplate> |
| <DataTemplate> |
| <telerik:RadFluidContentControl telerikAnimation:AnimationManager.IsAnimationEnabled="True" |
| SmallToNormalThreshold="291, 130" |
| NormalToSmallThreshold="291, 130" |
| NormalToLargeThreshold="730, 350" |
| LargeToNormalThreshold="730, 350"> |
| <telerik:RadFluidContentControl.SmallContent> |
| <Border Width="193" Height="30"> |
| <TextBlock Text="Small Content" Style="{StaticResource SmallBox}"/> |
| </Border> |
| </telerik:RadFluidContentControl.SmallContent> |
| <telerik:RadFluidContentControl.Content> |
| <Border Width="279" Height="130"> |
| <TextBlock Text="Content" Style="{StaticResource SmallBox}"/> |
| </Border> |
| </telerik:RadFluidContentControl.Content> |
| <telerik:RadFluidContentControl.LargeContent> |
| <Border Width="730" Height="350"> |
| <TextBlock Text="Large Content" Style="{StaticResource SmallBox}"/> |
| </Border> |
| </telerik:RadFluidContentControl.LargeContent> |
| </telerik:RadFluidContentControl> |
| </DataTemplate> |
| </telerikNavigation:RadTileView.ContentTemplate> |
| </telerikNavigation:RadTileView> |
public App(){ InitializeComponent(); SetTheme("Expression_Dark");}public void SetTheme(string themeName){ Resources.MergedDictionaries.Add(new ResourceDictionary() { Source = new Uri("/Telerik.Windows.Themes." + themeName + ";component/Themes/System.Windows.xaml", UriKind.RelativeOrAbsolute) }); Resources.MergedDictionaries.Add(new ResourceDictionary() { Source = new Uri("/Telerik.Windows.Themes." + themeName + ";component/Themes/Telerik.Windows.Controls.xaml", UriKind.RelativeOrAbsolute) }); // ... plus more merged resources}<tk:RadWindow x:Class="GridViewTesting.RadGridView.RadGridViewVw" x:ClassModifier="internal" xmlns:rgv="clr-namespace:GridViewTesting.RadGridView" Header="Telerik RadGridView Demo" Height="600" Width="500"> <tk:RadWindow.Resources> <Style TargetType="rgv:RadGridViewVw" BasedOn="{StaticResource RadWindowStyle}"/> </tk:RadWindow.Resources> <!-- Controls defined here. --></tk:RadWindow>