Linux+Mono 的Connected总是true,需要特殊处理。解决StarAgent在树莓派ZeroW上无法响应局域网Api搜索的问题
石头 authored at 2025-08-24 21:04:02
443.00 B
X
using System;
using System.Collections.Generic;
using App1.ViewModels;
using App1.Views;
using Xamarin.Forms;

namespace App1
{
    public partial class AppShell : Xamarin.Forms.Shell
    {
        public AppShell()
        {
            InitializeComponent();
            Routing.RegisterRoute(nameof(ItemDetailPage), typeof(ItemDetailPage));
            Routing.RegisterRoute(nameof(NewItemPage), typeof(NewItemPage));
        }

    }
}