We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df8a7f5 + 69ce412 commit c14d9c1Copy full SHA for c14d9c1
src/TwitchStreamingTools/Views/Loading.axaml.cs
@@ -7,24 +7,10 @@ namespace TwitchStreamingTools.Views;
7
/// A loading icon.
8
/// </summary>
9
public partial class Loading : UserControl {
10
- /// <summary>
11
- /// The width of the icon.
12
- /// </summary>
13
- public static readonly StyledProperty<int> WidthProperty =
14
- AvaloniaProperty.Register<Loading, int>(nameof(Width), 1);
15
-
16
/// <summary>
17
/// Initializes a new instance of the <see cref="Loading" /> class.
18
19
public Loading() {
20
InitializeComponent();
21
}
22
23
24
25
26
- public int Width {
27
- get => GetValue(WidthProperty);
28
- set => SetValue(WidthProperty, value);
29
- }
30
0 commit comments