반응형

<Button Width="160" Height="160" Content="버튼">
                <Button.ContentTemplate>
                    <DataTemplate>
                        <StackPanel>
                            <Ellipse Width="80" Height="80" Fill="Red"></Ellipse>
                            <TextBlock Text="{Binding}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
                        </StackPanel>
                    </DataTemplate>
                </Button.ContentTemplate>
            </Button>

반응형
Posted by 컴스터
,