我有一个Xamarin Forms项目(Portable),并且看到一个目标(UWP)上的颜色不是那么好。我想仅改变该目标上按钮的颜色,但我找不到如何做到这一点。
我查看了这些文件,但似乎整个text = input("Enter text: ")
# Loop counter
i = 0
# Accumulators
vows_string = ""
cons_string = ""
other_str = ""
while i < len(text):
char = text[i]
if char in "aioueAIOUE":
vows_string += char
elif char.isalpha():
cons_string += char
else:
other_str += char
i += 1
# Add pseudo-guillemets to make spaces "visible"
print(">>" + vows_string + "<<")
print(">>" + cons_string + "<<")
print(">>" + other_str + "<<")
加载了整个文件。
答案 0 :(得分:1)
使用Device自定义每个平台的属性
myButton.BackgroundColor = Color.Green;
// on Windows only, change color
if (Device.OS == TargetPlatform.Windows) {
myButton.BackgroundColor = Color.Blue;
}