c# - WPF CrystalReportsViewer: Change position of sidebar -
i'm trying change position of left side bar in crystalreportsviewer wpf element, don't know how. i'd have sidebar on top or @ bottom...
<sap:crystalreportsviewer name="crystalreportsviewer" width="auto" height="auto" horizontalalignment="center" verticalalignment="center" showprevpagebutton="false" showstatusbar="false" showtoolbar="false" sourceupdated="crystalreportsviewer_sourceupdated" targetupdated="crystalreportsviewer_targetupdated" togglesidepanel="none" />
i found solution: have style tab control , tab items...
<style targettype="{x:type tabcontrol}"> ... </style> <style targettype="{x:type tabitem}"> ... </style>
i found out, style tabcontrol being used in cr control, not style of tabitems
wiki
Comments
Post a Comment