码迷,mamicode.com
首页 > 其他好文 > 详细

Scala界面Panel、Layout初探

时间:2015-07-28 23:21:05      阅读:556      评论:0      收藏:0      [点我收藏+]

标签:函数   编程   scala   


示例代码:

package com.dt.scala.gui

import scala.swing.SimpleSwingApplication
import scala.swing.MainFrame
import scala.swing.Button
import scala.swing.Label
import scala.swing.Orientation
import scala.swing.BoxPanel
import scala.swing.Swing

object GUI_Panel_Layout extends SimpleSwingApplication{
  def top = new MainFrame{
    title = "Second GUI"
    val button = new Button{
      text = "Scala"
    }
    val label = new Label {
      text = "Here is Spark!!"
    }
    
    contents = new BoxPanel(Orientation.Vertical){
      contents += button
      contents += label
      border = Swing.EmptyBorder(50,50,50,50)
    }
  }
}


效果图:


技术分享



相关来源:DT大数据梦工厂,微信公众号是DT_Spark,每天都会有大数据实战视频发布,请您持续学习。

相关资料:

scala深入浅出实战经典完整视频、PPT、代码下载:

百度云盘:http://pan.baidu.com/s/1c0noOt6

腾讯微云:http://url.cn/TnGbdC

360云盘:http://yunpan.cn/cQ4c2UALDjSKy  访问密码45e2






版权声明:本文为博主原创文章,未经博主允许不得转载。

Scala界面Panel、Layout初探

标签:函数   编程   scala   

原文地址:http://blog.csdn.net/u013361361/article/details/47111567

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!