我使用代码在窗体Load的时候关联控件,代码如下:
textControl1.ButtonBar=buttonBar1;
然后点击添加页眉的按钮添加页眉并使页眉处于激活状态。代码如下:
TXTextControl.Section section=Textcontrol1.Sections.GetItem();
section.HeaderAndFooters.Add(HeaderAndFooterType.Header);
HeaderFooter header=TXTextControlUtils.Instance.GetPageHeader(Textcontrol1);
header.Activate();
然后在也没中添加文本,但是ButtonBar控件不可用。需要关闭页眉,再次双击页眉,这样ButtonBar才可以使用。 |
|