Xamarin-Forms-Labs RadioButton控件使用

今天以RadioButton控件为例,介绍下Xamarin-Forms-Labs如何在我们项目中使用

XLabs is a open source project that aims to provide a powerful and
cross platform set of services and controls tailored to work with
Xamarin and Xamarin Forms. XLabs是一个开源的项目,为Xamarin提供了跨平台的服务和控件。

XLabs的GitHub地址为https://github.com/forrest23/Xamarin-Forms-Labs

  1. 将项目download到本地,用Xamarin Studio打开项目文件XLabs.sln,然后编译,编译成功后在build文件中会有很多dll文件。在你项目中新建一个文件夹,将dll拷贝过去。然后在你的主项目、IOS项目、安卓项目中分别添加这几个dll的引用。
    clipboard.png

  2. 新建一个Forms,类型选择ContentPage Xaml
    Xamarin-Forms-Labs RadioButton控件使用_第1张图片

  3. 在xaml布局文件中添加以下代码来添加一个RadioButtonGroup控件

       
           
                
                    
                    
           
        

    注意:只有添加了xmlns:control="clr-namespace:XLabs.Forms.Controls;assembly=XLabs.Forms" 这句话才能使用XLabs.Forms中的控件。

  4. 在.xaml.cs文件中添加以下代码给RadioButtonGroup的ItemsSource赋值:

    public PatientSearch ()

           {
               InitializeComponent ();
               this.Title = "搜索患者" ;
               ansPicker.ItemsSource = new[]
               {
                   "姓名",
                   "住院号",
                   "床位号",
               };
               ansPicker.Spacing=0;
               ansPicker.Items [0].WidthRequest = 80; 
               ansPicker.Items [1].WidthRequest = 100;
               ansPicker.Items [2].WidthRequest = 100;
               ansPicker.CheckedChanged += ansPicker_CheckedChanged;
               ansPicker.Items[0].Checked = true;

    }

  5. 这样Xamarin-Forms-Labs RadioButton控件使用就介绍完毕。

你可能感兴趣的:(c#,xamarin,ios,android)