如何格式化可执行文件的属性详细信息

How to format properties details of executable file

Distribution类型,GRacket模式创建的可执行文件,并添加了一个图标。但是,右键单击文件 -> 属性 -> 详细信息显示文件描述为 "Racket GUI application",其他默认文件详细信息如图所示。

这是我使用的代码。

#lang racket
(require racket/gui/base
         framework)
;;;;changed application name
(application:current-app-name "pokeball")
(define frame-width 400)
(define frame-height 300)

(define top-frame
   (new frame%
      [label "pokeball"]
      [width frame-width]
      [height frame-height]
      [alignment (list 'left 'top)]))
(send top-frame show #t)

虽然我更改了应用程序,但产品名称仍显示为球拍-name.Is是否可以格式化这些默认属性?

尝试http://angusj.com/resourcehacker/。 滚动到第四个屏幕截图。