Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QWebView私の Qt アプリケーションは、ウィジェット内に外部の html ページをロードします。ページのコンテンツを表示する独自のスタイルシートを定義するにはどうすればよいですか? .cssQWebView がピックアップするファイルをバンドルすることは可能ですか?
QWebView
.css
の設定でロードできますQWebView:
QWebView myView; QWebSettings * settings = myView->settings(); QUrl myCssFileURL; settings->setUserStyleSheetUrl(myCssFileURL);