如何以编程方式放大KryptonButton的一个实例中使用的字体?
krytonButton.Font可以改变,但似乎没有效果。
kryptonButton.StateCommon.GetContentShortTextFont(bar)也返回一个Font,但所有的访问者都是getter,而字体也是只读的。
答案 0 :(得分:2)
我知道这有点晚了,但这可能会帮助其他人。
<?php
$serverAddress = "YOUR_SERVER_IP";
$serviceUrl = "http://127.0.0.1/soap-live/";
$wsdlUrl = $serviceUrl . 'wsdl/';
$clientParams = array(
'login' => 'admin',
'password' => 'paris',
'location' => $serviceUrl,
'trace' => true,
'features' => SOAP_SINGLE_ELEMENT_ARRAYS,
);
$client = new SoapClient($wsdlUrl, $clientParams);
echo "===== Get_api_version( ) =====<br/>\n";
$response = $client->Get_input_info(1);
echo $response->return . "<br/>\n";
?>
您必须将短文本属性设置为新字体。如果要尽可能多地保持字体,请在创建新字体时尝试读取以前的字体值。
cell.btnRowSelect.tag = indexPath.row
cell.btnRowSelect.addTarget(self, action: Selector("rowSelect:"), forControlEvents: .TouchUpInside)