System.Windows.Markup.XamlParseException was unhandled
Message: An unhandled exception of type 'System.Windows.Markup.XamlParseException' occurred in PresentationFramework.dll
Additional information: Zeilennummer "4" und Zeilenposition "17" von "Durch den Aufruf des Konstruktors für Typ "MyNamesspace.MainWindow", der den angegebenen Bindungseinschränkungen entspricht, wurde eine Ausnahme ausgelöst.".
The MainWindow.xaml (Position 4, 17):
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
On the development Computer (where Telerik installed), everything works.
How can I install application at the customer Computer?
Hello,
im a new Telerik customer i just want to ask how to load an existing excel file and fill some data. I cant find some examples.
Maybe somebody can help me out.
Thanks

I have two buttons in my login dialog.
<telerik:RadButton x:Name="btnCancel" Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" Width="100" Height="30" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="10,5,0,0" IsCancel="True" Click="btnCancel_Click">Abbrechen</telerik:RadButton><telerik:RadButton x:Name="btnOK" Grid.Column="1" Grid.Row="3" Width="100" Height="30" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,5,10,0" IsDefault="True" Click="btnOK_Click">OK</telerik:RadButton>After I changed the default PasswordBox to the new RadPasswordbox, the user can no longer use the Enter-Key to finish the Login. How can I restore this function?

Hello
How can I export pdf of RadGanttView in wpf.
Please help me. I waiting for reply.
Hello
I am facing problem of changing size of bars in rad Gantt view and display title side of bars in rad Gantt view. please help me
Hi,
I'm trying to localize RadSpreadsheet control using my resource files. I would like to ask, is it possible to localization, function names(from FunctionsProvider) and styles names in StyleGallery? I cannnot find any keys with function or style names.
Thanks
Damian

Hello,
Currently, RadDiagram uses pixels as the unit of measurement. I have been working on a solution, which requires millimeters as the unit of measurement.
I know I can change RadRuler measurement unit to centimeter (http://www.telerik.com/forums/ruler-that-displays-units-in-inches-mm), but this change only display value on ruler. I need support in the RadDiagram - grid lines in mm, snap to milimeters (not pixels) and page size in mm. How I can add support to milimeters unit?
Thanks you
Adam

Dear Telerik,
I am having the same problem as in this post: http://www.telerik.com/forums/gridviewcomboboxcolumn-lost-value-when-lost-focus
however, I believe that I have set all values required:
<telerik:RadGridView Name="PFGrid" AutoGenerateColumns="False" Height="228" ScrollMode="RealTime" ScrollViewer.CanContentScroll="True" ScrollViewer.VerticalScrollBarVisibility="Auto"
materialtypes is an array of my business object and is set on UserControl Loaded using my API calls:
materialtypes = MainWindow.dataclient.GetMATERIAL_TYPE(new MATERIAL_TYPE(), " ORDER BY MATERIALTYPE_NAME ASC ");
PFGrid.ItemsSource is also set on UserControl loaded:
formulas = MainWindow.dataclient.GetPOST_FORMULA(f, " ORDER BY POST_FORMULA_MATERIAL_TYPEDetail.MATERIALTYPE_NAME ASC ");
PFGrid.ItemsSource = formulas;
GridViewComboBoxColumn ItemsSource property is set on Grid Loaded event:
((GridViewComboBoxColumn)this.PFGrid.Columns[0]).ItemsSource = materialtypes;
Any help would be appreciated.
thanks.