or
this
.radChartView1 =
new
RadChartView();
((System.ComponentModel.ISupportInitialize)(
this
.radChartView1)).BeginInit();
this
.SuspendLayout();
this
.radChartView1.Size =
new
System.Drawing.Size(592, 336);
this
.radChartView1.TabIndex = 10;
this
.radChartView1.Name =
"radChartView1"
;
this
.radChartView1.AutoScroll =
true
;
this
.radChartView1.Location =
new
System.Drawing.Point(0, 0);
this
.radChartView1.Anchor =
((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this
.ClientSize =
new
Size(592, 373);
this
.Controls.Add(
this
.radChartView1);
this
.Name =
"KLDChart"
;
this
.Text =
"KLDReport"
;
this
.Load +=
new
System.EventHandler(
this
.KLDChart_Load);
this
.Controls.SetChildIndex(
this
.radChartView1, 0);
((System.ComponentModel.ISupportInitialize)(
this
.radChartView1)).EndInit();
this
.ResumeLayout(
false
);
This almost works, I get the SpellCheck window with my text in it but there aren't any words in the dictionary. Because of the way I'm doing it would I need to add the base English Dictionary back in? Am I making some other rookie mistake? Attached is an image of what I am seeing and below is the simple code snippet in it's entirety.
var txtControl=
new
System.Windows.Controls.TextBox();
txtControl.Text=
"This isn't speelt rite."
;
RadSpellChecker.Check(txtControl, SpellCheckingMode.AllAtOnce);
P.S. I didn't know if this belonged in the Winform or WPF forum, sorry.