• xamarin UWP ActivityIndicator


         在xamarin的UWP平台使用ActivityIndicator时,如果你时后台创建的这个对象,请设置他的宽度,不然在UWP平台下会发现找不这个对象,其实是在这个平台和特点版本下的宽度没设置,导致有这个对象,但是无法看到。

    1 ActivityIndicator indicator = new ActivityIndicator
    2             {
    3                 Color = new Color(.5),
    4                 WidthRequest=200,
    5                 IsRunning = true,
    6                 HorizontalOptions = LayoutOptions.CenterAndExpand,
    7                 VerticalOptions = LayoutOptions.CenterAndExpand,
    8             };

         -------踩坑记录。

  • 相关阅读:
    输入分隔符
    GO
    match|align|identify|cover_rate
    KEGG
    InterProScan
    Functional annotation
    GeneWise
    get middle lines
    goland debug web app with urfave cli
    go mod proxy
  • 原文地址:https://www.cnblogs.com/zuimengaitianya/p/6076378.html
Copyright © 2020-2023  润新知