カレンダー アプリ (silverlight WP7.5) の場合、wrappanel を使用して日を含めます (Border with Button を子として)。ここで、Border 内に別のボタンを追加したいと思います。そのため、毎日、数字と追加の情報/グラフィックが表示されます。Border には子を 1 つしか含めることができないことに気付きました。どうすればいいですか?
Border border = new Border();
Button btn = new Button();
border.Child = btn;
//Button btn_notification = new Button();
// how to add the btn_notification????
CalendarWrapPanel.Children.Add(border);
どうもありがとうございました!