Xamarin.Forms
मंच-विशिष्ट व्यवहार
खोज…
टिप्पणियों
प्लेटफार्मों को लक्षित करें
if(Device.OS == TargetPlatform.Android)
{
}
else if (Device.OS == TargetPlatform.iOS)
{
}
else if (Device.OS == TargetPlatform.WinPhone)
{
}
else if (Device.OS == TargetPlatform.Windows)
{
}
else if (Device.OS == TargetPlatform.Other)
{
}
Anroid में नेविगेशन हेडर में आइकन हटाना
एक छोटी पारदर्शी छवि का उपयोग करना जिसे रिक्त कहा जाता है
public class MyPage : ContentPage
{
public Page()
{
if (Device.OS == TargetPlatform.Android)
NavigationPage.SetTitleIcon(this, "empty.png");
}
}
IOS में लेबल का फ़ॉन्ट आकार छोटा करें
Label label = new Label
{
Text = "text"
};
if(Device.OS == TargetPlatform.iOS)
{
label.FontSize = label.FontSize - 2;
}
Modified text is an extract of the original Stack Overflow Documentation
के तहत लाइसेंस प्राप्त है CC BY-SA 3.0
से संबद्ध नहीं है Stack Overflow