I Have a TextBlock on Silverlight Page.
XAML
<TextBlock Text="*" x:Name="HasChangesTextBlock" Foreground="Red" FontSize="14" Visibility="{Binding Path=HasChanges, Converter={StaticResource BooleanToVisibilityConverter}}"
Margin="5,0,0,0">
</TextBlock>
Page loading takes few moments. And before binding is applied I want TextBlock to be collapsed, but default value of Visibility Property is Visible.
Is there way to make TextBlock to be collapsed before binding is applied?