School Commit Init

This commit is contained in:
2024-08-31 12:07:21 +03:00
commit 0b130ee18c
2801 changed files with 4720552 additions and 0 deletions
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView
x:Class="TechTitans.Views.Components.Piechart"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:drawables="clr-namespace:TechTitans.Views.Components"
x:Name="this">
<GraphicsView>
<GraphicsView.Drawable>
<drawables:PiechartDrawble
Progress="{Binding Progress, Source={x:Reference this}}"
Size="{Binding Size, Source={x:Reference this}}"
TextColor="{Binding TextColor, Source={x:Reference this}}"
Thickness="{Binding Thickness, Source={x:Reference this}}"
ProgressColor="{Binding ProgressColor, Source={x:Reference this}}"
ProgressLeftColor="{Binding ProgressLeftColor, Source={x:Reference this}}"/>
</GraphicsView.Drawable>
</GraphicsView>
</ContentView>