Is this a templated control? If not, you should be able to add a name tag, x:Name="txtTextbox" and then just address it directly, txtTextBox.SelectedText.
Since this is a templated control you don't have direct access via name.
So in your code-behind you could use a method like the following which will find the first Parent of the element specified of a particular type (TextBox). Place the following method into a helper class, or within your existing code:
/// <summary>
/// Finds a parent of a given item on the visual tree.
/// </summary>
/// <typeparam name="T">The type of the queried item.</typeparam>
/// <param name="child">A direct or indirect child of the
/// queried item.</param>
/// <returns>The first parent item that matches the submitted
/// type parameter. If not matching item can be found, a null
/// reference is being returned.</returns>
public static T TryFindParent<T>(this DependencyObject child)
where T : DependencyObject
{
//get parent item
DependencyObject parentObject = GetParentObject(child);
//we've reached the end of the tree
if (parentObject == null) return null;
//check if the parent matches the type we're looking for
T parent = parentObject as T;
if (parent != null)
{
return parent;
}
else
{
//use recursion to proceed with next level
return TryFindParent<T>(parentObject);
}
}
Then you just do this code in your code event handler:
MenuItem menuItem = sender as MenuItem;
if(menuItem!=null)
{
TextBox textBox = menuItem.TryFindParent<TextBox>();
if(textBox!=null)
{
string selectedText = textBox.SelectedText;
}
}
This method is helpful in many of my projects, so I create a UIHelper class that I put these types of things into...
Good Luck,
Jason