#!/usr/bin/python #wxWorkAround.pyw import wx # This just gives up a blank, re-sizable window. def main(): app = wx.App() frame = wx.Frame(None, -1, 'simple.py') frame.Show() app.MainLoop()
class sampleButton(object): """Implementation for GRRTool_addin.sampleButton (Button)""" def __init__(self): self.enabled = True self.checked = False def onClick(self): wxWorkAround.main()
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.