MessageDlg在两个Form中显示的结果不一样

先看下面这两个对话框的显示,正如你看到的,效果不一样。
MessageDlg在两个Form中显示的结果不一样
而这两个对话框都是用下面这句显示的,只不过,在两个Form中调用。

       MessageDlg('是否退出?', System.UITypes.TMsgDlgType.mtConfirmation,
           [System.UITypes.TMsgDlgBtn.mbOK, System.UITypes.TMsgDlgBtn.mbCancel], 0,
           procedure(const AResult: TModalResult)
           Begin
               if AResult = mrok then
               Begin
                     .....
               End;
           End);

为什么会不一样呢?

问题的原因查到了,第一个样式,是因为所在的Form没有使用StyleBook,而第二个使用了StyleBook.本来我是把StyleBook的UseStyleManager设置成True,做为全局来用的,但对于MessageDlg没启到作用。这应算是XE8的一个小问题了!

该怎么解决呢?

找到FMX.Helpers.Android单元,将GetNativeTheme改成:

function GetNativeTheme: Integer;
var
   LStyleDescriptor: TStyleDescription;
begin
   Result := 0;
   if not IsGingerbreadDevice and (Screen <> nil) and (Screen.ActiveForm <> nil)
         then
   begin
     if (Screen.ActiveForm.StyleBook <> nil) then
     begin
         LStyleDescriptor := TStyleManager.FindStyleDescriptor(Screen.ActiveForm.StyleBook.Style);
         Result := GetThemeFromDescriptor(LStyleDescriptor);
     end
     else
     begin
         LStyleDescriptor := TStyleManager.FindStyleDescriptor(TStyleManager.ActiveStyle(nil));
         Result := GetThemeFromDescriptor(LStyleDescriptor);
     end;
   end;

end;


转自:http://blog.sina.com.cn/s/blog_44fa172f0102vgo9.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值