我不知道你是否解决了这个问题,但我一直在努力解决同样的问题并想出了一个解决方案。
首先创建一个您自己的自定义标记符号,如下面的代码:
public class TextBoxMarkerSymbol : MarkerSymbol
{
public static readonly DependencyProperty ContentTextProperty = DependencyProperty.Register("ContentText", typeof(string), typeof(TextBoxMarkerSymbol), new PropertyMetadata(OnTextChanged));
//private string contentText;
public string ContentText
{
get { return (string)GetValue(ContentTextProperty); }
set { SetValue(ContentTextProperty, value); }
}
private static void OnTextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
}
public TextBoxMarkerSymbol(int width, int height)
{
string template = "<ControlTemplate " +
"xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'>" +
"<Canvas>";
template += "<TextBox Name='txtText' Text='{Binding Symbol.ContentText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}' Height='" + height + "' Width='" + width + "' />";
template += " </Canvas>" +
"</ControlTemplate>";
System.IO.MemoryStream templateStream = new System.IO.MemoryStream(System.Text.UTF8Encoding.Default.GetBytes(template));
this.ControlTemplate = System.Windows.Markup.XamlReader.Load(templateStream) as ControlTemplate;
}
}
诀窍在于您无法直接访问您的控件,因为标记控件不是可视的。
所以你必须为你的控件属性定义依赖属性,这样你就可以使用 Symbol 来绑定它们。
然后你可以使用你的符号如下代码:
TextBoxMarkerSymbol mSymbol = new TextBoxMarkerSymbol(width, height);
mSymbol.OffsetX = width / 2;
mSymbol.OffsetY = height / 2;
mSymbol.ContentText = "test binding";
祝你今天过得愉快。