首页
社区
课程
招聘
[旧帖] [求助]请教:修改工具栏按钮 0.00雪花
发表于: 2010-7-24 09:15 1407

[旧帖] [求助]请教:修改工具栏按钮 0.00雪花

2010-7-24 09:15
1407
想减少一个软件的工具栏按钮,用resourehacker打开后,只能找到RC数据,如果去掉“Load game”按钮,请教应该怎样修改?

object Form1: TForm1
  Left = 194
  Top = 111
  Width = 640
  Height = 480
  HelpContext = 1
  ………………

  object StatusBar: TStatusBar
    Left = 0
    Top = 415
    Width = 632
    Height = 19
    Font.Charset = RUSSIAN_CHARSET
    Font.Color = clMaroon
    Font.Height = -11
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    Panels = <
      item
        Text = ' Thinking...'
        Width = 100
      end
      item
        Width = 80
      end
      item
        Alignment = taRightJustify
        Width = 50
      end>
    ParentFont = False
    SimplePanel = True
  end
  object CoolBar1: TCoolBar
    Left = 0
    Top = 0
    Width = 632
    Height = 34
    AutoSize = True
    Bands = <
      item
        Break = False
        Control = ToolBar2
        ImageIndex = -1
        MinHeight = 30
        Width = 566
      end>
    Color = clBtnFace
    ParentColor = False
    object ToolBar2: TToolBar
      Left = 0
      Top = 0
      Width = 624
      Height = 30
      AutoSize = True
      ButtonHeight = 26
      Color = clBtnFace
      Images = ImageList1
      ParentColor = False
      TabOrder = 0
      object ToolButton1: TToolButton
        Left = 0
        Top = 2
        Width = 23
        Height = 26
        Hint = 'New game'
        Caption = 'ToolButton1'
        ImageIndex = 0
        ParentShowHint = False
        ShowHint = True
        OnClick = ToolButton1Click
      end
      object ToolButton8: TToolButton
        Left = 23
        Top = 2
        Width = 8
        Height = 26
        Caption = 'ToolButton8'
        ImageIndex = 1
        Style = tbsSeparator
      end
      object OpenButton: TToolButton
        Left = 31
        Top = 2
        Width = 23
        Height = 26
        Hint = 'Load game'
        Caption = 'OpenButton'
        ImageIndex = 1
        ParentShowHint = False
        ShowHint = True
        OnClick = OpenButtonClick
      end

      object SaveButton: TToolButton
        Left = 54
        Top = 2
        Width = 23
        Height = 26
        Hint = 'Save game'
        Caption = 'SaveButton'
        ImageIndex = 2
        ParentShowHint = False
        ShowHint = True
        OnClick = SaveButtonClick
      end
      object ToolButton11: TToolButton
        Left = 77
        Top = 2
        Width = 28
        Height = 26
        Caption = 'ToolButton11'
        ImageIndex = 3
        Style = tbsSeparator
      end
      object SpeedButton1: TSpeedButton
        Left = 105
        Top = 2
        Width = 64
        Height = 26
        Caption = 'PLAY'
        ParentShowHint = False
        ShowHint = True
        OnClick = SpeedButton1Click
      end
      object SpeedButton2: TSpeedButton
        Left = 169
        Top = 2
        Width = 25
        Height = 26
        Hint = 'Swap colours'
        Caption = 'R'
        ParentShowHint = False
        ShowHint = True
        OnClick = SpeedButton2Click
      end
      object ToolButton12: TToolButton
        Left = 194
        Top = 2
        Width = 8
        Height = 26
        Caption = 'ToolButton12'
        ImageIndex = 4
        Style = tbsSeparator
      end
    …………
  …………

[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)

收藏
免费 0
支持
分享
最新回复 (6)
雪    币: 261
活跃值: (55)
能力值: ( LV6,RANK:90 )
在线值:
发帖
回帖
粉丝
2
有一款软件叫XNResourceEditor...只可以编辑按钮的....可以把按钮去掉...
2010-7-24 09:18
0
雪    币: 144
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
把这段代码删除
object OpenButton: TToolButton
        Left = 31
        Top = 2
        Width = 23
        Height = 26
        Hint = 'Load game'
        Caption = 'OpenButton'
        ImageIndex = 1
        ParentShowHint = False
        ShowHint = True
        OnClick = OpenButtonClick
      end
然后编译 删除后游戏中会有个空 调整一下其他按钮的大小填补就好啦
2010-7-24 09:19
0
雪    币: 121
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4
谢谢楼上两位!
新手,不懂的东西太多。
我改改试试。
2010-7-24 09:24
0
雪    币: 121
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
删除、编译脚本、保存,程序不能运行了!
2010-7-24 09:42
0
雪    币: 121
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
6
PEiD显示:什么都没找到  *
是不是保护了?
2010-7-24 10:00
0
雪    币: 144
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
7
有可能上程序检测宽和高位置的改变 你把它的宽和高 分配到别的按钮上 以前我也碰到过这种 你试试
2010-7-24 10:12
0
游客
登录 | 注册 方可回帖
返回
//