private void NameEntry_TextChanged(object sender, TextChangedEventArgs e) { if (e.OldTextValue == textValue && e.OldTextValue!=null) { imageeditor.Delete(); } imageeditor.AddText(e.NewTextValue, new TextSettings() { Bounds = new Rectangle(40, 10, 30, 10) }); textValue = e.NewTextValue; } |
…
<imageeditor:SfImageEditor x:Name="imageeditor" Grid.Row="0">
</imageeditor:SfImageEditor> |