when i want to render a bigger html content in demo, it render nothing, i try step into the source code, and i found after set Text property, the base.Text value is empty, it is quite strange
```
public override string Text
{
get { return base.Text; }
set
{
__base.Text = value;__
if (!IsDisposed)
{
VerticalScroll.Value = VerticalScroll.Minimum;
_htmlContainer.SetHtml(Text, _baseCssData);
PerformLayout();
Invalidate();
}
}
}
```
my envirment:
win8 64 enterprise with latest update
vs2012 sp4
htmlrender 1.4.11.0
you can test with the attachment file. thanks
Comments: cannot reproduce
```
public override string Text
{
get { return base.Text; }
set
{
__base.Text = value;__
if (!IsDisposed)
{
VerticalScroll.Value = VerticalScroll.Minimum;
_htmlContainer.SetHtml(Text, _baseCssData);
PerformLayout();
Invalidate();
}
}
}
```
my envirment:
win8 64 enterprise with latest update
vs2012 sp4
htmlrender 1.4.11.0
you can test with the attachment file. thanks
Comments: cannot reproduce