菜鸟教程小白 发表于 2022-12-12 10:00:37

c# - 弄清楚如何摆脱 UITableView 单元格中单元格周围的边框


                                            <p><p>我最近通过使用 monotouch.dialog 覆盖 GetCell 方法来获取单元格上可用的属性。我现在的问题是我看不到摆脱单元格周围的默认边框。 </p>

<p>我能够弄清楚如何在单元格周围绘制自己的边框(我相信它为此使用了核心图形和单元格上的 .Layer 属性)。但是,旧边框仍然存在,我找不到禁用此功能的属性。 </p>

<p>理想情况下,我希望自己能够自定义现有边框,但如果这不可能(无需制作我自己的单元格图形),那么我想删除默认边框并使用生成的边框代码。 </p>

<p>请参阅下面的覆盖方法和我到目前为止的屏幕截图:</p>

<pre><code>public override UITableViewCell GetCell(UITableView tableView) {
    var cell = base.GetCell(tableView);
    cell.BackgroundColor = Resources.XDarkGrayColor;
    cell.TextLabel.TextColor = Resources.XWhiteColor;
    cell.Accessory = UITableViewCellAccessory.DisclosureIndicator;
    cell.Layer.ShadowColor = UIColor.Red.CGColor;
    cell.Layer.BorderColor = UIColor.Red.CGColor;
    cell.Layer.BorderWidth = 2.0f;
    cell.Layer.CornerRadius = 5.0f;
    cell.Layer.ShadowRadius = 2.0f;
    cell.Layer.ShadowOpacity = 0.75f;

    return cell;
}
</code></pre>

<p> <img src="/image/FwCXu.png" alt="This shows the red border I created in code using the .Layer property of a cell, and then the default border around the cell just on the inside of the red border"/> </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>IIRC(现在不能尝试)这是使用背景 View 绘制的。因此,您需要删除它,例如:</p>

<pre><code>cell.BackgroundView = new UIView (RectangleF.Empty);
</code></pre>

<p>或将 <code>Bounds</code> 属性设置为 <code>Empty</code>,如:</p>

<pre><code>cell.BackgroundView.Bounds = RectangleF.Empty;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于c# - 弄清楚如何摆脱 UITableView 单元格中单元格周围的边框,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15724401/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15724401/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c# - 弄清楚如何摆脱 UITableView 单元格中单元格周围的边框