3
我有一個stacklayout裏面有三個標籤。但是,當我顯示它們之間的標籤之間的差距。我想避開這個空間。任何人都可以幫助我避免這個問題。Stacklayout標籤間距 - Xamarin表格
感謝您的幫助提前
我有一個stacklayout裏面有三個標籤。但是,當我顯示它們之間的標籤之間的差距。我想避開這個空間。任何人都可以幫助我避免這個問題。Stacklayout標籤間距 - Xamarin表格
感謝您的幫助提前
使用StackLayout的間距屬性爲項目之間的間距調整。
下面舉例說明這一點: -
StackLayout objStackLayout = new StackLayout()
{
Orientation = StackOrientation.Vertical,
Spacing = 0
};
Label objLabel1 = new Label();
objLabel1.BackgroundColor = Color.Red;
objLabel1.Text = "Red";
objStackLayout.Children.Add(objLabel1);
Label objLabel2 = new Label();
objLabel2.BackgroundColor = Color.Green;
objLabel2.Text = "Green";
objLabel2.Font = Font.OfSize("Arial", 48);
objStackLayout.Children.Add(objLabel2);
Label objLabel3 = new Label();
objLabel3.BackgroundColor = Color.Blue;
objLabel3.Text = "Blue";
objLabel3.Font = Font.OfSize("Arial", 48);
objStackLayout.Children.Add(objLabel3);
我用spacing.Even則有 – 2014-09-25 13:23:40
之間間距你們是不是上面的例子中,或東西在自己的應用程序?你也試過這個平臺? – Pete 2014-09-25 13:54:09
我正在嘗試在我的應用程序中。我正在Xamarin工作。 – 2014-09-26 05:03:16