本文整理匯總了Python中electrum_ltc.plugins.BasePlugin.toggle方法的典型用法代碼示例。如果您正苦於以下問題:Python BasePlugin.toggle方法的具體用法?Python BasePlugin.toggle怎麽用?Python BasePlugin.toggle使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類electrum_ltc.plugins.BasePlugin
的用法示例。
在下文中一共展示了BasePlugin.toggle方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: toggle
# 需要導入模塊: from electrum_ltc.plugins import BasePlugin [as 別名]
# 或者: from electrum_ltc.plugins.BasePlugin import toggle [as 別名]
def toggle(self):
out = BasePlugin.toggle(self)
self.win.update_status()
self.win.tabs.removeTab(1)
new_send_tab = self.gui.main_window.create_send_tab()
self.win.tabs.insertTab(1, new_send_tab, _('Send'))
return out
示例2: toggle
# 需要導入模塊: from electrum_ltc.plugins import BasePlugin [as 別名]
# 或者: from electrum_ltc.plugins.BasePlugin import toggle [as 別名]
def toggle(self):
out = BasePlugin.toggle(self)
self.win.update_status()
if self.config.get('use_exchange_rate'):
try:
self.fiat_button
except:
self.gui.main_window.show_message(_("To see fiat amount when sending bitcoin, please restart Electrum to activate the new GUI settings."))
return out
示例3: toggle
# 需要導入模塊: from electrum_ltc.plugins import BasePlugin [as 別名]
# 或者: from electrum_ltc.plugins.BasePlugin import toggle [as 別名]
def toggle(self):
enabled = BasePlugin.toggle(self)
self.win.update_status()
self.win.tabs.removeTab(1)
new_send_tab = self.gui.main_window.create_send_tab()
self.win.tabs.insertTab(1, new_send_tab, _('Send'))
if enabled:
self.add_fiat_edit()
return enabled