代码拉取完成,页面将自动刷新
// 由res2go自动生成。
// 在这里写你的事件。
package main
import (
"fmt"
"strings"
"github.com/Knetic/govaluate"
"github.com/ying32/govcl/vcl"
)
//::private::
type TForm1Fields struct {
}
func (f *TForm1) OnFormCreate(sender vcl.IObject) {
//f.Edit1.Clear()
//f.Label1.SetCaption("")
// 本程序布局解析:
/*
TForm
|- TPanel <Align: alClient; BorderSpacing: left, top, bottom, right=8>
|- TPanel <
Align: alClient;
ChildSizing:
ControlsPerLine=5 // 行数
EnlargeHorizontal=crsHomogenousChildResize // 子控件横向宽度
EnlargeVertical=crsHomogenousChildResize // 子控件纵向高度
Layout=cclTopToBottomThenLeftToRight // 从上到下再左到右排序
>
|- TSpeedButton < Flat=true > // 20个按钮
....
|- TEdit <Align: alTop>
|- TLabel < Align: alTop>
*/
}
func (f *TForm1) OnSpeedButton1Click(sender vcl.IObject) {
// 所有按钮共用一个事件
btn := vcl.AsSpeedButton(sender)
text := btn.Caption()
switch text {
case "C":
f.Edit1.Clear()
f.Label1.SetCaption("")
case "=":
s1 := f.Edit1.Text()
s := strings.Replace(strings.Replace(s1, "÷", "/", -1), "x", "*", -1)
expression, err := govaluate.NewEvaluableExpression(s)
if err != nil {
f.Edit1.SetText(err.Error())
return
}
result, err := expression.Evaluate(nil)
if err != nil {
f.Edit1.SetText(err.Error())
return
}
f.Label1.SetCaption(s1)
f.Edit1.SetText(fmt.Sprint(result))
default:
f.Edit1.SetText(f.Edit1.Text() + text)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。