void textControl1_TextFrameActivated(object sender, TXTextControl.TextFrameEventArgs e)
{
TXTextControl.TextControl tc = ((TXTextControl.TextControl)sender);
//TXTextControl.TextFrameCollection tf = ((TXTextControl.TextControl)sender).TextFrames;
MessageBox.Show(tc.Name+":"+tc.TextFrames.Count.ToString());
}
我在TextFrame的Activated做测试,当激活控件后,能取到tc 的说有属性,但是就是TextFrames.Count就是为0 ,这个。。。。 |