[Desktop] StrokeDashArray not working #2315
-
Following code is expected to produce dashed ellipse: public MainPage()
{
this
.Background(ThemeResource.Get<Brush>("ApplicationPageBackgroundThemeBrush"))
.Content(new StackPanel()
.VerticalAlignment(VerticalAlignment.Center)
.HorizontalAlignment(HorizontalAlignment.Center)
.Children(
new TextBlock()
.Text("Hello Uno Platform!"),
new Ellipse()
.Width(100)
.Height(100)
.Stroke(Colors.DeepPink)
.StrokeThickness(1)
.StrokeDashArray(new double[] { 2, 2 })
));
} under "desktop" StrokeDashArray is ignored: while under net8.0-windows10.0.19041 all is ok tested under windows only. {
"msbuild-sdks": {
"Uno.Sdk": "5.2.139"
}
}
project attached: UnoStrokeDashApp.zip |
Beta Was this translation helpful? Give feedback.
Answered by
jeromelaban
Jun 3, 2024
Replies: 1 comment
-
Thanks for the report. This is likely fixed in the latest prerelease builds of uno.sdk (unoplatform/uno#16702). |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
kucint
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the report. This is likely fixed in the latest prerelease builds of uno.sdk (unoplatform/uno#16702).