Tk库的使用(1)

简介: # # To change this template, choose Tools | Templates# and open the template in the editor. # Sample code from Programing Ruby, page 248require 'tk'cl...
#
# To change this template, choose Tools | Templates
# and open the template in the editor.
 
# Sample code from Programing Ruby, page 248
require 'tk'

class Draw
  def do_press(x, y)
    @start_x = x
    @start_y = y
    @current_line = TkcLine.new(@canvas, x, y, x, y)
  end

  def do_motion(x, y)
    if @current_line
      @current_line.coords @start_x, @start_y, x, y
    end
  end

  def do_release(x, y)
    if @current_line
      @current_line.coords @start_x, @start_y, x, y
      @current_line.fill 'black'
      @current_line = nil
    end
  end

  def initialize(parent)
    @canvas = TkCanvas.new(parent)
    @canvas.pack
    @start_x = @start_y = 0
    @canvas.bind("1", lambda {|e| do_press(e.x, e.y)})
    @canvas.bind("B1-Motion",
                 lambda {|x, y| do_motion(x, y)}, "%x %y")
    @canvas.bind("ButtonRelease-1",
                 lambda {|x, y| do_release(x, y)},
                 "%x %y")
  end
end

root = TkRoot.new { title 'Canvas' }
Draw.new(root)
Tk.mainloop
相关文章
|
6月前
|
Python
Python TK实现的托盘
Python TK实现的托盘
67 0
|
6月前
|
Python
Python TK实现的取色
Python TK实现的取色
46 0
|
6月前
|
Python
Python TK实现的日历
Python TK实现的日历
50 0
|
6月前
|
Python
tkinter之panedwindow
tkinter之panedwindow
73 0
|
2月前
|
前端开发 Python
python之【Tkinter模块】
python之【Tkinter模块】
34 5
|
6月前
|
Python
Python tk 弹出对话框
Python tk 弹出对话框
62 0
|
6月前
|
开发者 Python
【python】tkinter组件,from Tkinter import * 与 import Tkinter 的区别
【python】tkinter组件,from Tkinter import * 与 import Tkinter 的区别
96 0
|
前端开发 Python
Tkinter的基础使用介绍
Tkinter的基础使用介绍。更多文章请关注个人公众号:python学习杂记
100 0
|
前端开发 Python
Python tkinter库之Canvas 以圆模拟画圆环
Python tkinter库之Canvas 以圆模拟画圆环
249 0
|
前端开发 Python
Python内置包Tkinter的重要控件(下)
本文将接着介绍剩下的五个重要的控件,包括Canvas,Messagebox,Listbox,Checkbutton,Radiobutton。
87 0
Python内置包Tkinter的重要控件(下)