- Add comprehensive ControlGallery sample app with 12 pages demonstrating all 35+ controls - Add detailed ROADMAP.md with version milestones - Add README placeholders for VSIX icons and template images - Sample pages include: Home, Buttons, Labels, Entry, Pickers, Sliders, Toggles, Progress, Images, CollectionView, CarouselView, SwipeView, RefreshView 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
78 lines
3.3 KiB
XML
78 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="ControlGallery.Pages.EntryPage"
|
|
Title="Entry & Editor">
|
|
|
|
<ScrollView>
|
|
<VerticalStackLayout Spacing="20" Padding="20">
|
|
|
|
<Label Text="Text Input Controls" FontSize="24" FontAttributes="Bold" />
|
|
|
|
<!-- Basic Entry -->
|
|
<Frame Padding="15" CornerRadius="8">
|
|
<VerticalStackLayout Spacing="10">
|
|
<Label Text="Basic Entry" FontAttributes="Bold" />
|
|
<Entry Placeholder="Enter text here..." />
|
|
</VerticalStackLayout>
|
|
</Frame>
|
|
|
|
<!-- Entry with Binding -->
|
|
<Frame Padding="15" CornerRadius="8">
|
|
<VerticalStackLayout Spacing="10">
|
|
<Label Text="Two-Way Binding" FontAttributes="Bold" />
|
|
<Entry x:Name="BoundEntry" Placeholder="Type something..." TextChanged="OnEntryTextChanged" />
|
|
<Label x:Name="BoundLabel" Text="You typed: " TextColor="{StaticResource Gray500}" />
|
|
</VerticalStackLayout>
|
|
</Frame>
|
|
|
|
<!-- Password Entry -->
|
|
<Frame Padding="15" CornerRadius="8">
|
|
<VerticalStackLayout Spacing="10">
|
|
<Label Text="Password Entry" FontAttributes="Bold" />
|
|
<Entry Placeholder="Enter password..." IsPassword="True" />
|
|
</VerticalStackLayout>
|
|
</Frame>
|
|
|
|
<!-- Keyboard Types -->
|
|
<Frame Padding="15" CornerRadius="8">
|
|
<VerticalStackLayout Spacing="10">
|
|
<Label Text="Keyboard Types" FontAttributes="Bold" />
|
|
<Entry Placeholder="Email" Keyboard="Email" />
|
|
<Entry Placeholder="Numeric" Keyboard="Numeric" />
|
|
<Entry Placeholder="Telephone" Keyboard="Telephone" />
|
|
<Entry Placeholder="URL" Keyboard="Url" />
|
|
</VerticalStackLayout>
|
|
</Frame>
|
|
|
|
<!-- Max Length -->
|
|
<Frame Padding="15" CornerRadius="8">
|
|
<VerticalStackLayout Spacing="10">
|
|
<Label Text="Max Length (10 characters)" FontAttributes="Bold" />
|
|
<Entry Placeholder="Max 10 chars" MaxLength="10" />
|
|
</VerticalStackLayout>
|
|
</Frame>
|
|
|
|
<!-- Editor (Multiline) -->
|
|
<Frame Padding="15" CornerRadius="8">
|
|
<VerticalStackLayout Spacing="10">
|
|
<Label Text="Editor (Multiline)" FontAttributes="Bold" />
|
|
<Editor Placeholder="Enter multiple lines of text..."
|
|
HeightRequest="100"
|
|
AutoSize="TextChanges" />
|
|
</VerticalStackLayout>
|
|
</Frame>
|
|
|
|
<!-- Read-Only -->
|
|
<Frame Padding="15" CornerRadius="8">
|
|
<VerticalStackLayout Spacing="10">
|
|
<Label Text="Read-Only Entry" FontAttributes="Bold" />
|
|
<Entry Text="This text cannot be edited" IsReadOnly="True" />
|
|
</VerticalStackLayout>
|
|
</Frame>
|
|
|
|
</VerticalStackLayout>
|
|
</ScrollView>
|
|
|
|
</ContentPage>
|