This commit is contained in:
Wiesław Šoltés 2021-03-27 20:29:59 +01:00
Родитель 49740c9c44
Коммит e1ae0515c7
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -58,6 +58,8 @@
<NumericUpDown Value="{Binding QuantizeUnit}" <NumericUpDown Value="{Binding QuantizeUnit}"
Increment="1" Increment="1"
HorizontalAlignment="Stretch" /> HorizontalAlignment="Stretch" />
<Label Content="Fill color:" />
<TextBox Text="{Binding FillColor}"/>
<Label Content="Color filter:" /> <Label Content="Color filter:" />
<TextBox Text="{Binding Filter}" <TextBox Text="{Binding Filter}"
AcceptsReturn="True" AcceptsReturn="True"
@ -75,7 +77,8 @@
<Viewbox Stretch="Uniform"> <Viewbox Stretch="Uniform">
<controls:GeometryCanvas Width="{Binding Width}" <controls:GeometryCanvas Width="{Binding Width}"
Height="{Binding Height}" Height="{Binding Height}"
Paths="{Binding Paths}" /> Paths="{Binding Paths}"
Brush="{Binding FillColor}"/>
</Viewbox> </Viewbox>
</Panel> </Panel>