eggsuperman1992 发表于 2016-3-23 17:30:08

C1toolBar哪个标签属性功能类似于TextBox?

C1toolBar哪个标签属性功能类似于TextBox?内容且可以绑定数据源的,比如:绑定C1pdfviewer的当前页数

Alice 发表于 2016-3-24 09:36:29

谢谢您的反馈。
您可以通过自定义ToolBar来实现绑定,比如:
    <c1:C1ToolbarStrip>
      <c1:C1ToolbarButton Content="First"
            Command="{Binding FirstPageCommand,ElementName=reportViewer}" />
      <c1:C1ToolbarButton Content="Previous"
            Command="{Binding PreviousPageCommand,ElementName=reportViewer}" />
      <ContentPresenter Content="{Binding PageNumber,ElementName=reportViewer}" />
      <TextBlock Text="/"/>
      <ContentPresenterContent="{Binding PageCount,ElementName=reportViewer}" />
      <c1:C1ToolbarButton   Content="Next"
            Command="{Binding NextPageCommand,ElementName=reportViewer}" />
      <c1:C1ToolbarButtonContent="Last"
            Command="{Binding LastPageCommand,ElementName=reportViewer}" />      
    </c1:C1ToolbarStrip>
页: [1]
查看完整版本: C1toolBar哪个标签属性功能类似于TextBox?