XAML で定義されたコントロールにパラメーターを送信することは可能ですか?
たとえば、この XAML がある場合:
<UserControl x:Class="Controls.MyControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d">
<UserControl.Resources>
<ResourceDictionary Source="..\Colors.xaml" />
</UserControl.Resources>
<Grid>
<Polygon x:Name="plgPoly" Points="0,0 100,0 100,100 0,0" />
</Grid>
</UserControl>
しかし、「ポリゴン」を構築するとき、それを含むコントロール(this.Height、this.Widthなど)または親コントロールで定義された他のコントロールに依存する座標を与えたいと思います。
出来ますか?どうやって?