or
<
dependency
>
<
dependentAssembly
dependencyType
=
"preRequisite"
allowDelayedBinding
=
"true"
>
<
assemblyIdentity
name
=
"Telerik.Windows.Controls"
version
=
"2010.2.812.40"
publicKeyToken
=
"5803CFA389C90CE7"
language
=
"neutral"
processorArchitecture
=
"msil"
/>
</
dependentAssembly
>
</
dependency
>
<
dependentAssembly
dependencyType
=
"install"
allowDelayedBinding
=
"true"
codebase
=
"de\Telerik.Windows.Controls.resources.dll"
size
=
"12288"
>
<
dependentAssembly
dependencyType
=
"install"
allowDelayedBinding
=
"true"
codebase
=
"es\Telerik.Windows.Controls.resources.dll"
size
=
"12288"
>
...
mainGrid.CurrentCellInfo = new GridViewCellInfo(myObj, mainGrid.Columns["Description"]);I can verify that CurrentCellInfo has been properly set, however CurrentCell is always null. I'm trying to edit it programatically afterwards with:
mainGrid.Focus();
mainGrid.CurrentCell.BeginEdit();What could be wrong here?
<Button FontSize="12" Content="," />
, however whenever I go over a font size of 12 the comma completely disappears. If someone has an alternative method of enlarging the comma display, would be very appreciative.
My xml code is below:
Name is CountryList.xml
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
Country
>
<
CountryName
Name
=
"Ashmore and Cartier Islands"
/>
<
CountryName
Name
=
"Australia"
/>
<
CountryName
Name
=
"Austria"
/>
<
CountryName
Name
=
"Bahamas"
/>
<
CountryName
Name
=
"Bahrain"
/>
<
CountryName
Name
=
"Bangladesh"
/>
<
CountryName
Name
=
"Barbados"
/>
<
CountryName
Name
=
"Bassas da India"
/>
<
CountryName
Name
=
"Belarus"
/>
<
CountryName
Name
=
"Belgium"
/>
</
Country
>
This is my Wpf XAML Code:
<
Window
x:Class
=
"WpfApplication8.MainWindow"
Title
=
"MainWindow"
Height
=
"350"
Width
=
"525"
xmlns:telerik
=
"http://schemas.telerik.com/2008/xaml/presentation"
>
<
Window.Resources
>
<
XmlDataProvider
x:Key
=
"XmlData1"
Source
=
"DAL\CountryList.xml"
XPath
=
"Country"
/>
</
Window.Resources
>
<
Grid
>
<
telerik:RadComboBox
ItemsSource
=
"{Binding Source={StaticResource XmlData1}, XPath=./CountryName}"
DisplayMemberPath
=
"@Name"
IsEditable
=
"True"
IsFilteringEnabled
=
"True"
TextSearchMode
=
"StartsWith"
StaysOpenOnEdit
=
"True"
HorizontalAlignment
=
"Left"
Margin
=
"164,100,0,0"
Name
=
"radComboBox2"
VerticalAlignment
=
"Top"
Width
=
"174"
>
</
telerik:RadComboBox
>
</
Grid
>
</
Window
>