I want to bind some controls' margin, let's say, a button for example:
<Window.Resources>
<local:MarginConverter x:Key="marginConverter1"/>
</Window.Resources>
<Grid HorizontalAlignment="Left" VerticalAlignment="Top"
Margin="{Binding MyThickness,
Converter={StaticResource marginConverter1}}">
<Button>Button1</Button>
</Grid>
According to the ref. here: SO: Binding a part of the margin, I created a MarginConverter
class and a MyDataContext
class to implement INotifyPropertyChanged
interface (see below), but the Button1
persists in the top-left position (as if its margin is 0).
Public Class MyDataContext
Implements INotifyPropertyChanged
Private _myThickness As Thickness = New Thickness(20, 10, 20, 0)
Public Event PropertyChanged As PropertyChangedEventHandler _
Implements INotifyPropertyChanged.PropertyChanged
Private Sub OnPropertyChanged(propertyName As String)
RaiseEvent PropertyChanged(Me, New PropertyChangedEventArgs(propertyName))
End Sub
Public Property MyThickness As Thickness
Get
Return _myThickness
End Get
Set(value As Thickness)
_myThickness = value
OnPropertyChanged("MyThickness")
End Set
End Property
End Class
And the code behind:
Dim myDataContext1 As New MyDataContext()
Private Sub Window1_Initialized(sender As Object, e As EventArgs) Handles Me.Initialized
myDataContext1.MyThickness = New Thickness(20, 150, 20, 0)
End Sub
Please help me to clarify my misunderstanding, even a basic knowledge or a clear explanation from you will be appreciated!
P/S: My intention for binding the top margin is when user does some specific task, a 25-height border will be appear at the top of the window, so all the existing controls must go down. So that if you have another approach, please share here. Thank you.
If you only want to provide a height of 25 on top of your grid dynamically, You can do it by adding a border on top row of the grid and change its visibility to "Collapsed" to "visible".