.NET MAUI Preview6 狀態預覽(7月)

2021年7月更新內容

1.添加多個新功能: 手勢、原生警報、彈性佈局、裁剪等

  • 手勢
    如下所示, 添加了一個手勢, 雙擊觸發一個Command
<Grid>
    <Grid.GestureRecognizers>
        <TapGestureRecognizer NumberOfTapsRequired="2" Command="{Binding OnTileTapped}" />
    </Grid.GestureRecognizers>
    <!-- Grid content -->
</Grid>
  • 裁剪
    例如把圖片變成圓形
<Image Source="face.png">
    <Image.Clip>
        <EllipseGeometry RadiusX="80"
                         RadiusY="80"
                         Center="80,80" />
    </Image.Clip>
</Image>
  • 警告
    根據不同平臺, 顯示提醒的窗口
await DisplayAlert ("Alert", "You have been alerted", "OK");

2.單個項目

  • NuGet 包替換爲 .NET MAUI 工作負載(在 .csproj 中)。true
  • 單個項目解決方案現在將單個平臺嵌套在“平臺”文件夾中,以實現整潔的組織。
  • 更新到 Windows 應用 SDK 0.8.1 RC。 使用市場上最新的 Visual Studio 2022 兼容擴展。
    3.基礎組件接近完成狀態

Preview6 UI組件更新一覽

✅ CheckBox
✅ DatePicker
✅ Shapes
✅ Stepper
✅ TimePicker

⚠️ Editor
Preview5

APIAndroidiOS / Mac CatalystWindows
AutoSize
Completed
CharacterSpacing
FontAttributes
FontFamily
FontSize
IsReadOnly
IsTextPredictionEnabled ⚠️
PlaceHolder ⚠️
PlaceHolderColor ⚠️
Text
TextColor ⚠️
MaxLength

Preview6

APIAndroidiOS / Mac CatalystWindows
AutoSize
Completed
CharacterSpacing
FontAttributes
FontFamily
FontSize
IsReadOnly
IsTextPredictionEnabled
PlaceHolder
PlaceHolderColor
Text
TextColor
MaxLength

⚠️ Entry
Preview5

APIAndroidiOS / Mac CatalystWindows
ClearButtonVisibility
CharacterSpacing
Completed
CursorPosition ⚠️
FontAttributes
FontFamily
FontSize
HorizontalTextAlignment ⚠️
IsTextPredictionEnabled ⚠️
IsPassword
PlaceHolder
PlaceHolderColor ⚠️ ⚠️ ⚠️
VerticalTextAlignment ⚠️
ReturnCommand ⚠️ ⚠️ ⚠️
ReturnCommandParameter ⚠️ ⚠️ ⚠️
ReturnType
SelectionLength ⚠️
Text
TextColor

Preview6

APIAndroidiOS / Mac CatalystWindows
ClearButtonVisibility
CharacterSpacing
Completed
CursorPosition ⚠️
FontAttributes
FontFamily
FontSize
HorizontalTextAlignment
IsTextPredictionEnabled
IsPassword
PlaceHolder
PlaceHolderColor
VerticalTextAlignment
ReturnCommand
ReturnCommandParameter
ReturnType
SelectionLength ⚠️
Text
TextColor

⚠️ Slider
Preview5

APIAndroidiOS / Mac CatalystWindows
DragCompleted
DragCompletedCommand
DragStarted
DragStartedCommand
Maximum
MaximumTrackColor
Minimum
MinimumTrackColor
ThumbColor
ThumbImageSource
Value
ValueChanged

Preview6

APIAndroidiOS / Mac CatalystWindows
DragCompleted
DragCompletedCommand
DragStarted
DragStartedCommand
Maximum
MaximumTrackColor
Minimum
MinimumTrackColor
ThumbColor
ThumbImageSource
Value
ValueChanged

⚠️ Switch
Preview6

APIAndroidiOS / Mac CatalystWindows
IsToggled
OnColor
ThumbColor

⚠️ WebView
Preview6

APIAndroidiOS / Mac CatalystWindows
CanGoBack ⚠️ ⚠️ ⚠️
CanGoForward ⚠️ ⚠️ ⚠️
Cookies ⚠️ ⚠️ ⚠️
Source
Eval ⚠️ ⚠️ ⚠️
EvaluateJavaScriptAsync ⚠️ ⚠️ ⚠️
GoBack ⚠️ ⚠️ ⚠️
GoForward ⚠️ ⚠️ ⚠️
Reload ⚠️ ⚠️ ⚠️

Renderer Based Views
Preview6

ViewAndroidiOS / Mac CatalystWindows
CarouselView ⚠️
CollectionView ⚠️
IndicatorView ⚠️
ImageButton
Map ⚠️
RefreshView ⚠️ ⚠️ ⚠️
SwipeView ⚠️

Layouts
Preview6

LayoutAndroidiOS / Mac CatalystWindows
AbsoluteLayout
ContentPresenter ⚠️ ⚠️ ⚠️
ContentView ⚠️ ⚠️ ⚠️
FlexLayout
Grid
RelativeLayout
ScrollView
StackLayout
TemplatedView ⚠️ ⚠️ ⚠️

Features
Preview6

FeatureAndroidiOS / Mac CatalystWindows
Accessibility
Animation
Border Everywhere
Brushes Everywhere
CornerRadius Everywhere
Device ⚠️ ⚠️ ⚠️
Gestures
ImageHandlers
Interactivity (Behaviors, Triggers, Visual State Manager)
FlowDirection (RTL)
Fonts
Lifecycle Events
Themes ⚠️
Shell
Styles
View Transforms
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章