Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #94045
| Path | csiph.com!optima2.xanadu-bbs.net!xanadu-bbs.net!news.glorb.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!newspeer1.nac.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.010 |
| X-Spam-Evidence | '*H*': 0.98; '*S*': 0.00; 'subject:question': 0.08; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'tcl/tk': 0.09; 'python': 0.10; 'jan': 0.11; '"see': 0.16; 'options"': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'reedy': 0.16; 'sec': 0.16; 'wrote:': 0.16; 'widget': 0.18; 'library': 0.20; 'disclaimer': 0.22; 'tkinter': 0.22; 'seems': 0.23; 'chapter': 0.23; 'url:edu': 0.24; 'header:In-Reply-To:1': 0.24; "i've": 0.25; 'header:User-Agent:1': 0.26; "doesn't": 0.26; 'example': 0.26; '(which': 0.26; 'header:X-Complaints-To:1': 0.26; 'methods.': 0.29; "i'm": 0.30; 'mention': 0.30; 'included': 0.32; 'universal': 0.33; 'worked': 0.34; 'but': 0.36; 'there': 0.36; 'url:org': 0.36; 'to:addr:python-list': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'thanks': 0.37; 'received:org': 0.37; 'missing': 0.37; 'detail': 0.38; 'stuff': 0.38; 'anything': 0.38; 'sure': 0.39; 'to:addr:python.org': 0.40; 'some': 0.40; 'your': 0.60; 'email addr:gmail.com': 0.62; 'more': 0.63; 'believe': 0.66; 'url:index': 0.67; 'url:help': 0.73; 'construct': 0.84; 'examples.': 0.84; 'url:tkinter': 0.84; 'received:fios.verizon.net': 0.91 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Terry Reedy <tjreedy@udel.edu> |
| Subject | Re: tkinter resize question |
| Date | Fri, 17 Jul 2015 21:20:13 -0400 |
| References | <21c1f9fb-1af0-4c57-aeba-2c7d78b1e707@googlegroups.com> <dfdf0485-860f-4cfd-ad88-7476554f0291@googlegroups.com> <mailman.657.1437162765.3674.python-list@python.org> <78761f0b-39ff-4b08-99d5-fb52e791b85b@googlegroups.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=utf-8; format=flowed |
| Content-Transfer-Encoding | 7bit |
| X-Gmane-NNTP-Posting-Host | pool-98-114-97-173.phlapa.fios.verizon.net |
| User-Agent | Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.1.0 |
| In-Reply-To | <78761f0b-39ff-4b08-99d5-fb52e791b85b@googlegroups.com> |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.20+ |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.671.1437182443.3674.python-list@python.org> (permalink) |
| Lines | 25 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1437182443 news.xs4all.nl 2821 [2001:888:2000:d::a6]:50177 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:94045 |
Show key headers only | View raw
On 7/17/2015 6:42 PM, nickgeovanis@gmail.com wrote: > I don't think I've seen the "winfo_optioname()" construct in the > python-side doc. For example Sec 25.1.6.1 "Setting Options" in the > tkinter chapter of the standard python Library Reference doesn't > mention it or anything syntactically similar. The docs are incomplete. > I'm sure the usual > disclaimer "see the tcl/tk docs" applies, but this seems more than a > detail to me. Thanks for your help...Nick Better yet, bookmark this tkinter reference (which I believe is mentioned at the top of the doc). It is only missing stuff new in 8.6. http://infohost.nmt.edu/tcc/help/pubs/tkinter/web/index.html The winfo functions are included in 26 Universal widget methods. http://effbot.org/tkinterbook/ has some worked out examples. There is also a lot on Stackoverflow, which has a tkinter tag. -- Terry Jan Reedy
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
tkinter resize question nickgeovanis@gmail.com - 2015-07-17 11:53 -0700
Re: tkinter resize question nickgeovanis@gmail.com - 2015-07-17 12:17 -0700
Re: tkinter resize question Russell Owen <rowen@uw.edu> - 2015-07-17 12:52 -0700
Re: tkinter resize question Rick Johnson <rantingrickjohnson@gmail.com> - 2015-07-17 13:06 -0700
Re: tkinter resize question nickgeovanis@gmail.com - 2015-07-17 15:42 -0700
Re: tkinter resize question Terry Reedy <tjreedy@udel.edu> - 2015-07-17 21:20 -0400
Re: tkinter resize question Terry Reedy <tjreedy@udel.edu> - 2015-07-17 18:49 -0400
Re: tkinter resize question nickgeovanis@gmail.com - 2015-07-17 18:31 -0700
Re: tkinter resize question Terry Reedy <tjreedy@udel.edu> - 2015-07-18 01:49 -0400
csiph-web