Wxpython:如何为搜索框使用不同的边框颜色

时间:2018-08-06 17:15:51

标签: python wxpython wxwidgets wxtextctrl

我正在使用wx.SearchCtrl,并且在搜索字段周围需要一个红色边框。在文档中,我找不到任何可以轻松做到这一点的东西。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

您不能直接更改边框颜色,但是可以使用通常的技巧来使此搜索控件成为您想要的背景颜色的

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Session;
use App;
use Log;

class SwitchLanguageController extends Controller
{
    public function switchLang($lang)
    {
        Session::put('locale', $lang);
        $response = ['status' => 'success', 'code' => '200', 'message' => 'Language was switched.', 'metod' => 'GET'];
        return $response;
    }
}
子元素,并使它比其父元素小几个像素