如何在WinPhone应用程序中修复Xamarin跨平台中的自定义按钮图像大小?

时间:2016-05-22 15:47:04

标签: xamarin xamarin.forms

使用下面的XAML块,按钮图像在iOS和Android应用程序中正常显示,但在WinPhone应用程序中,按钮中的图像仅为按钮大小的五分之一,并以按钮为中心。

您可以在http://public.thoughts.net/Misc/buttons.PNG

查看示例

我需要添加/更改什么?

<!DOCTYPE html>
<html>
<head>
</head>
<body>
  <div>
    <h1 id="to">To:</h1>
    <h1 id="from">From:</h1>
    <h1 id="message">Message:</h1>
  </div>
  <script>
    if (window.XMLHttpRequest) {
      xmlhttp = new XMLHttpRequest();
    } else {
      xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.open("GET", "FileName.xml", false);
    xmlhttp.onload = function() {
      xmlDoc = xmlhttp.responseXML;
      document.getElementById("to").innerHTML = xmlDoc.getElementsByTagName("to")[0].childNodes[0].nodeValue;
      document.getElementById("from").innerHTML = xmlDoc.getElementsByTagName("from")[0].childNodes[0].nodeValue;
      document.getElementById("message").innerHTML = xmlDoc.getElementsByTagName("message")[0].childNodes[0].nodeValue;
    }
    xmlhttp.send();
  </script>
</body>
</html>

0 个答案:

没有答案