-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCButton.xaml
More file actions
24 lines (21 loc) · 790 Bytes
/
Copy pathCButton.xaml
File metadata and controls
24 lines (21 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<Grid
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:ccp="clr-namespace:Blog_MAUI_Components.MAUI.CustomControls.ProgressBars"
xmlns:ccb="clr-namespace:Blog_MAUI_Components.MAUI.CustomControls.Buttons"
x:Class="Blog_MAUI_Components.MAUI.CustomControls.Buttons.CButton"
x:DataType="ccb:CButton">
<Button
x:Name="Button"
Clicked="Button_OnClicked"/>
<ccp:ProgressBar
x:Name="AnimatedProgressBar"
IsVisible="False"
Margin="6, 0"
HeightRequest="5"
UseRange="True"
RoundCaps="True"
VerticalOptions="End"
ProgressColor="{StaticResource PrimaryDark}" />
</Grid>