단추의 템플릿을 프로그래밍 방식으로 설정하려면 어떻게해야합니까?WPF에서 ControlTemplate을 프로그래밍 방식으로 만듭니다.
Polygon buttonPolygon = new Polygon();
buttonPolygon.Points = buttonPointCollection;
buttonPolygon.Stroke = Brushes.Yellow;
buttonPolygon.StrokeThickness = 2;
// create ControlTemplate based on polygon
ControlTemplate template = new ControlTemplate();
template.Childeren.Add(buttonPolygon); // This does not work! What's the right way?
//create button based on controltemplate
Button button = new Button();
button.Template = template;
그래서 버튼의 템플릿으로 Polygon을 설정하는 방법이 필요합니다. 제안?
감사합니다.
턱. 어쨌든 고마워. :-) –