Files
downkyicore/DownKyi/CustomControl/AsyncImageLoader/Loaders/AdvancedImage.axaml
yaobiao131 f744d264e0 fix: 优化项目代码
1、修复部分字幕下载问题
2、修复自定义aria2设置出错问题
2025-03-19 21:54:14 +08:00

20 lines
845 B
XML

<Styles xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:controls="clr-namespace:DownKyi.CustomControl.AsyncImageLoader.Loaders">
<Design.PreviewWith>
<controls:AdvancedImage />
</Design.PreviewWith>
<Style Selector="controls|AdvancedImage">
<Setter Property="Template">
<ControlTemplate>
<Grid>
<!-- CurrentImage will be rendered with codebehind, just as it is done in the Image -->
<ProgressBar VerticalAlignment="Center" MinWidth="0" MaxWidth="100"
IsIndeterminate="True"
IsVisible="{TemplateBinding IsLoading}" />
</Grid>
</ControlTemplate>
</Setter>
</Style>
</Styles>