花了好几天的时间,我正在使用Xamarin表单条目标记,我需要使其显示为只读。(我被捕不是为了我的需要)

    <StackLayout BindingContext="{StaticResource vehicleViewModel}">
            <Entry Placeholder="Make" x:Name="make" Text="{Binding VehicleMake}" Focused="VehicleMake_Focused" />
    </StackLayout>

最佳答案

只需简单地设置YourEntry.InputTransparent = true;即可。

关于android - Xamarin Forms-如何使Entry标签变为只读(Android),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41879581/

10-10 10:31