Different type of TextBox available in MahApp.Metro


  1.   <TextBox Text="Standared textBox" Width="200" Margin="5" />
  2.   <TextBox metro:TextBoxHelper.ClearTextButton="True"
           Text="TextBox With Clear Button"    Width="200" Margin="5"/>
  3.   <TextBox Style="{StaticResource SearchMetroTextBox}" Width="200"                                           Margin="5"  Text="TextBox With Search Button" />
 4.    <TextBox Text="TextBox with select all text on focus" Width="200" Margin="5"
        metro:TextBoxHelper.SelectAllOnFocus="True"/>
 5.   <TextBox Text="TextBox Watermark" Width="200" Margin="5"
        metro:TextBoxHelper.Watermark="Type something"/>


Comments

Popular posts from this blog

Pagination of DataGrid in WPF using MVVM

Filter DataGrid and ListView in wpf using ICollectionView

Connect SQL Server Database to WPF Application and Perform CRUD Operations