php小編小新為您介紹GoLang中的gocui邊框顏色設定。 gocui是一個強大的Go語言庫,用於建立命令列介面的互動式應用程式。在gocui中,可以透過設定邊框顏色來增加介面的美觀性和可讀性。透過簡單的程式碼修改,您可以為介面的邊框添加自訂的顏色,使得應用程式更加吸引人。接下來,讓我們一起來了解如何在GoLang中使用gocui函式庫來實現邊框顏色的設定吧!
人工智慧機器人出現問題,所以我在這裡問:
我有這個程式碼,它只輸出兩個窗口,而不是背景,我希望邊框是綠色的。
我已經嘗試過:
g.highlight = true
每個文件仍然不起作用。
這是我的完整程式碼:
package main import ( // "fmt" "log" "github.com/jroimartin/gocui" ) func main() { // Create a new gocui view g, err := gocui.NewGui(gocui.OutputNormal) if err != nil { log.Panicln(err) } defer g.Close() g.SetManagerFunc(layout) if err := g.SetKeybinding("", 'q', gocui.ModNone, quit); err != nil { log.Panicln(err) } if err := g.SetKeybinding("", '1', gocui.ModNone, view1); err != nil { log.Panicln(err) } if err := g.SetKeybinding("", '2', gocui.ModNone, view2); err != nil { log.Panicln(err) } if err := g.MainLoop(); err != nil && err != gocui.ErrQuit { log.Panicln(err) } } func updateView(g *gocui.Gui, v *gocui.View) error { // Check if the view is active if v != nil && v == g.CurrentView() { // If the view is active, set its background color to yellow v.BgColor = gocui.ColorYellow } else { // If the view is not active, set its background color to default (nothing) v.BgColor = gocui.ColorDefault } return nil } func layout(g *gocui.Gui) error { // maxX, maxY := g.Size() g.Highlight = true // Create a new view with the name "myView" if v, err := g.SetView("view1", 0, 0, 20, 10); err != nil { if err != gocui.ErrUnknownView { log.Panicln(err) } // Set the default background color of the view to nothing v.BgColor = gocui.ColorDefault v.Title = "View 1" v.Wrap = false // fmt.Fprintln(v, "View 1") } // Set a second view with the name "myOtherView" if v, err := g.SetView("view2", 25, 0, 45, 10); err != nil { if err != gocui.ErrUnknownView { log.Panicln(err) } // Set the default background color of the view to nothing v.BgColor = gocui.ColorDefault v.Title = "View 2" v.Wrap = false // fmt.Fprintln(v, "View 2") } return nil } func view1(g *gocui.Gui, v *gocui.View) error { if _, err := g.SetCurrentView("view1"); err != nil { return err } updateHighlighting(g, v) return nil } func view2(g *gocui.Gui, v *gocui.View) error { if _, err := g.SetCurrentView("view2"); err != nil { return err } updateHighlighting(g, v) return nil } func updateHighlighting(g *gocui.Gui, v *gocui.View) error { current := g.CurrentView() for _, view := range g.Views() { if view == current { current.BgColor = gocui.ColorGreen } else { view.BgColor = gocui.ColorDefault } } return nil } func quit(g *gocui.Gui, v *gocui.View) error { return gocui.ErrQuit }
view
的框架由呈現該框架的 gui
處理。您已將 gui
的反白顯示設為 true,但未設定 selbgcolor
或 selfgcolor
。
來自 https://pkg.go.dev/github.com/ jroimartin/gocui#gui:
// selbgcolor and selfgcolor allow to configure the background and // foreground colors of the frame of the current view. selbgcolor, selfgcolor attribute // if highlight is true, sel{bg,fg}colors will be used to draw the // frame of the current view. highlight bool
透過將佈局的開頭更改為以下內容,新增 g.selfgcolor = gocui.colorgreen
:
func layout(g *gocui.Gui) error { // maxX, maxY := g.Size() g.Highlight = true g.SelFgColor = gocui.ColorGreen ... ...
#如果您不希望背景也變成綠色,請刪除此行:
current.bgcolor = gocui.colorgreen
一開始有點混亂,因為view
和gui
都有selfgcolor
selbgcolor
和highlight
,但是view
的屬性控制的是視圖中的選取文本,而不是目前視圖的邊框在gui 中。
以上是GoLang:gocui邊框顏色的詳細內容。更多資訊請關注PHP中文網其他相關文章!