| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using Avalonia;
 
- using Avalonia.Input;
 
- using Avalonia.Media.Imaging;
 
- using Avalonia.Platform;
 
- using MiniMvvm;
 
- namespace ControlCatalog.ViewModels
 
- {
 
-     public class CursorPageViewModel : ViewModelBase
 
-     {
 
-         public CursorPageViewModel()
 
-         {
 
-             StandardCursors = Enum.GetValues(typeof(StandardCursorType))
 
-                 .Cast<StandardCursorType>()
 
-                 .Select(x => new StandardCursorModel(x))
 
-                 .ToList();
 
-             var loader = AvaloniaLocator.Current!.GetService<IAssetLoader>()!;
 
-             var s = loader.Open(new Uri("avares://ControlCatalog/Assets/avalonia-32.png"));
 
-             var bitmap = new Bitmap(s);
 
-             CustomCursor = new Cursor(bitmap, new PixelPoint(16, 16));
 
-         }
 
-         public IEnumerable<StandardCursorModel> StandardCursors { get; }
 
-         
 
-         public Cursor CustomCursor { get; }
 
-         public class StandardCursorModel
 
-         {
 
-             public StandardCursorModel(StandardCursorType type)
 
-             {
 
-                 Type = type;
 
-                 Cursor = new Cursor(type);
 
-             }
 
-             public StandardCursorType Type { get; }
 
-             
 
-             public Cursor Cursor { get; }
 
-         }
 
-     }
 
- }
 
 
  |