I was generate the button through code. and with the button i got one method to call up the child window in silverlight.
private void btnXX_Click(object sender, RoutedEventArgs e)
{
Button btn = (Button)sender;
SlotMaker slotMaker = new SlotMaker();
slotMaker.Show();
}
while the child window pop up, may i know how could i get the sender.content ?? from the child window