how to use progress bar in wpf popup control? -


i using c# , wpf gui. goal display progress bar under wpf popup control. using below code add progress bar under popup control.

<popup horizontalalignment="left" margin="338,261,0,0" name="popup1" verticalalignment="top" height="38" width="153" >             <stackpanel background="red">                 <progressbar height="15" horizontalalignment="left" margin="349,272,0,0" name="progressbar1" verticalalignment="top" width="130" foreground="#ff3ea3ea" value="{binding elementname=textbox1, path=text.length, mode=onetime}"   maximum="140" />              </stackpanel>         </popup> 

please me.

thanx in advanced!

you should use below code showing progressbar under popup control:

<popup name="popup1" horizontalalignment="left" margin="338,261,0,0" allowstransparency="true" verticalalignment="top" height="38" width="153">     <grid>         <progressbar horizontalalignment="left"                         name="progressbar1" height="25"                       verticalalignment="center" width="130"                       foreground="#ff3ea3ea"                       value="{binding elementname=textbox1, path=text.length, mode=onetime}"                      maximum="140" forcecursor="false" />     </grid> </popup> 

Comments

Popular posts from this blog

ios - UICollectionView Self Sizing Cells with Auto Layout -

node.js - ldapjs - write after end error -

DOM Manipulation in Wordpress (and elsewhere) using php -