Hello i need create part of my table be like passwordbox(I mean, text must be hide using for example *)
This is part of my table
<GridViewColumn Header="Password" Width="80">
<GridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock HorizontalAlignment="Center" Text="{Binding Path=Password}" Foreground="Black"></TextBlock>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
when i will add for example "cat", i will get explicit cat but i want get ***, and then if i will referred to this part of table i want to get this 'cat'
thx for help