要素を画面に表示せずに「スクリーンショット」できるかどうか知りたいです。
たとえば、次のようになりますStackPanel
。
private void Button_Click(object sender, RoutedEventArgs e)
{
StackPanel sp = new StackPanel();
sp.Children.Add(new Button { Content = "Bouton 1" });
sp.Children.Add(new Button { Content = "Bouton 2" });
sp.Children.Add(new Button { Content = "Bouton 3" });
sp.Children.Add(new Button { Content = "Bouton 4" });
sp.Children.Add(new Button { Content = "Bouton 5" });
// Take screenshot of sp
}
レンダリングされたサイズがないため、これは可能ではないと思いますが、確認したいと思います。
ありがとう !