AutoSize

Comment.AutoSize property

表示评论的大小是否根据其内容自动调整。

public bool AutoSize { get; set; }

例子


[C#]
if(!comment1.AutoSize)
{
    //评论大小随内容变化
    comment1.AutoSize = true;
}

也可以看看