Kivy是Python中与平台无关的GUI工具。由于它可以在Android, IOS, Linux和Windows等操作系统上运行。它基本上是用于开发Android应用程序, 但这并不意味着它不能在桌面应用程序上使用。
????Kivy教程–通过示例学习Kivy。选项卡式面板
TabbedPanel窗口小部件管理选项卡中的不同窗口小部件, 具有用于实际选项卡按钮的标题区域和用于显示当前选项卡内容的内容区域。
TabbedPanel提供了一个默认选项卡。
要使用它, 必须import:from kivy.uix.tabbedpanel import TabbedPanel
Basic Approach:
1) import kivy
2) import kivy App
3) import floatlayout
4) import tabbedpanel
5) set minimum version(optional)
6) Create Tabbed panel class
7) create the App class
8) create .kv file:
# create multiple tabs in it.
# Do there functioninging also.
9) return the widget/layout etc class
10) Run an instance of the class
【Python Kivy中的选项卡式面板】实施方法:
.py文件
# Program to explain how to create tabbed panel App in kivy# import kivy module
import kivy# base Class of your App inherits from the App class.
# app:always refers to the instance of your application
from kivy.app import App# this restrict the kivy version i.e
# below this kivy version you cannot
# use the app or software
kivy.require( '1.9.0' )# touse this must have to import it
from kivy.uix.tabbedpanel import TabbedPanel# Floatlayout allows us to place the elements
# relatively based on the current window
# size and height especially in mobiles
from kivy.uix.floatlayout import FloatLayout# Create Tabbed class
class Tab(TabbedPanel):
pass# create App class
class TabbedPanelApp(App):
def build( self ):
return Tab()# run the App
if __name__ = = '__main__' :
TabbedPanelApp().run()
.kv文件
# .kv file of tabbed panel<
Tab>
:# creating the size
# and the alignment of the tab
size_hint: . 5 , . 5
pos_hint: { 'center_x' : . 5 , 'center_y' : . 5 }
do_default_tab: False# Create tab 1
TabbedPanelItem:
text: 'Tab 1'
Label:
text: "First tab"# Create 2nd tab
TabbedPanelItem:
text: 'Tab 2'
BoxLayout:
Label:
text: 'Press button'
Button:
text: 'Click it'# Create 3rd tab
TabbedPanelItem:
text: 'Tab 3'
RstDocument:
text: '\n' .join(( "How are you GFG's???" ))
输出如下:
标签1:
文章图片
标签2:
文章图片
标签3:
文章图片
首先, 你的面试准备可通过以下方式增强你的数据结构概念:Python DS课程。
推荐阅读
- Windows 8系统SecureBoot未正确设置怎样办【图文】
- Python tell()函数用法示例
- Python使用.kv文件的Kivy中的TextInput
- Python使用OpenCV的阈值技术Set-1(简单阈值)
- Python使用OpenCV的阈值技术Set-2(自适应阈值)
- Python使用OpenCV的阈值技术第三组(Otsu Thresholding)
- Python Tkinter – Checkbutton小部件用法示例
- Python – Tkinter选择颜色对话框
- Python | NLP餐厅评论分析