凡例表示 matplotlibでグラフを作成する際、苦労することが多い凡例の表示位置設定方法を整理しました。 グラフをPythonの標準GUIツールであるTkinter内に表示させる例となっており、matplotlibとnumpyがインストールされていれば利用できます。matplotlibの…
tkinterでアプリを作成した際に、PCシステムとtkinter画面の解像度と一致していないと文字がつぶれてしまいます。 表示をクリアにするために、Python側でシステムの改造度を取得・設定する方法を示します。 【スポンサーリンク】 (adsbygoogle = window.adsb…
Pythonで作成したデスクトップショートカットツールを紹介します。知り合いに提供したところ評判が非常に良く、デスクトップ画面がすっきりして、日々の業務効率が非常に向上したと報告をもらっています。 【スポンサーリンク】 (adsbygoogle = window.adsby…
tkinterでアプリを作成すると、起動時に画面が出現する位置を指定したいケースがある。ここでは、ウィジェット出現時に発生するMapイベントを利用してアプリ起動時の画面位置を設定する方法を示す。 【スポンサーリンク】 (adsbygoogle = window.adsbygoogle…
以下の記事では、既知のサイズのtkinterメイン画面をモニター端に移動させる方法を示した。今回は、メイン画面のサイズによらずに自動でモニター端に移動させる方法を示す。 www.python-beginners.com また、アプリ起動時に画面を移動させる方法は以下の記事…
ウィジェットをドラッグで移動させる処理の例を示す。 【スポンサーリンク】 (adsbygoogle = window.adsbygoogle || []).push({}); 以下の例では、B1-Motionイベント(ウィジェットをマウス左ボタンでドラッグしたときに発生するイベント)を利用してボタン…
マウスのポインタがウィジェット上に位置した際に特定の処理を実行する例を示す。 【スポンサーリンク】 (adsbygoogle = window.adsbygoogle || []).push({}); 以下の例では、Motionイベント(マウスがウィジェット上に位置したときに発生するイベント)とLe…
You can change widget color when on or off hover by binding "Motion" and "Leave"event to color change functions. This is an example using button widget. how to change tkinter's widget color on hover off hover on hover
If you want users to input something, you can use the tkinter.simpledialog module. But if you want to create a more complex or well-designed dialog, you can easily create one yourself. example example of a simple input dialog
Summarized how to just fit tkinter main window to the display edge. Normally the tkinter window is positioned slightly to the right of the position set using geometry method. You should take care if you want to just fit the window to your …