Crunchy-Downloader/CRD/Views/SettingsPageView.axaml
Elwador 51e3102503 Add - Added sorting to seasons tab
Add -  Added a download subs button to the history
Chg - Changed CDM error message to include a GitHub wiki link
Chg - Changed the style of settings tabs
Chg - Changed the date format in the seasons tab
Fix - Fixed Crunchyroll seasons numbering issue (e.g., Blue Exorcist)
Fix - Fixed window slightly moving on startup
Fix - Fixed a bug in the upcoming episodes display for the next week
2025-01-05 02:10:52 +01:00

37 lines
No EOL
1.6 KiB
XML

<UserControl xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:vm="clr-namespace:CRD.ViewModels"
xmlns:controls="clr-namespace:FluentAvalonia.UI.Controls;assembly=FluentAvalonia"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:DataType="vm:SettingsPageViewModel"
x:Class="CRD.Views.SettingsPageView"
Unloaded="OnUnloaded">
<Design.DataContext>
<vm:SettingsPageViewModel />
</Design.DataContext>
<controls:TabView TabItems="{Binding Tabs}"
AllowDropTabs="False" IsAddTabButtonVisible="False"
CanDragTabs="False" CanReorderTabs="False"
VerticalAlignment="Stretch">
<controls:TabView.Styles>
<Style Selector="controls|TabViewItem:selected /template/ Border#TabContainerBorder">
<Setter Property="Background" Value="Transparent" />
</Style>
<Style Selector="controls|TabViewItem:selected /template/ Path#SelectedBackgroundPath">
<Setter Property="Fill" Value="#10FFFFFF" />
</Style>
<Style Selector="controls|TabView:not(:selected) /template/ ContentPresenter">
<Setter Property="Background" Value="Transparent" />
</Style>
</controls:TabView.Styles>
</controls:TabView>
</UserControl>