这是源码
procedure TForm1.Button3Click(Sender: TObject);
var
  b: TButton;  // or another Type of button
  h, Window : hwnd;
begin
  Window := FindWindow('Shell_TrayWnd', nil);
  b := TButton.Create(nil);
b.ParentWindow := handle;
  //b.Parent:=form1;
  b.Glyph.LoadFromfile('C:\start.bmp');
  b.Caption := '';
  b.Width := 51;
  b.font.style := [fsbold];
  b.Visible:=true;运行后会出现错误
  [Error] Unit1.pas(70): Undeclared identifier: 'Glyph'这是为什么啥啊?谢谢各位高手