Identifies the
FillColor1 dependency property.
Syntax
Visual Basic (Declaration) | |
---|
Public Shared ReadOnly FillColor1Property As DependencyProperty |
Remarks
Example
C# | Copy Code |
---|
//Assuming that a ScaleBar (named ScaleBar1) and a TextBox (named TextBox1) are
//previously defined, the ScaleBar1.FillColor1 can be bound to the TextBox1.Background.
System.Windows.Data.Binding myBinding = new System.Windows.Data.Binding("Background");
myBinding.ElementName = "TextBox1";
ScaleBar1.SetBinding(ESRI.ArcGIS.Client.ScaleBar.FillColor1, myBinding); |
VB.NET | Copy Code |
---|
'Assuming that a ScaleBar (named ScaleBar1) and a TextBox (named TextBox1) are
'previously defined, the ScaleBar1.FillColor1 can be bound to the TextBox1.Background.
Dim myBinding As System.Windows.Data.Binding = New System.Windows.Data.Binding("Background")
myBinding.ElementName = "TextBox1"
ScaleBar1.SetBinding(ESRI.ArcGIS.Client.ScaleBar.FillColor1, myBinding) |
Requirements
Target Platforms:Windows Phone 7
See Also