# Border and Corner Configuration

## Overview

The Border and Corner Configuration feature is managed through several public properties: `BorderWidth`, `BorderColor`, `TopLeftRadius`, `TopRightRadius`, `BottomLeftRadius`, `BottomRightRadius`, and `MakeRadial`. These properties allow developers to define the thickness and color of the control's border as well as configure the curvature of each corner independently. The `MakeRadial` property provides an easy way to enforce a circular shape by synchronizing all corner radii. This level of customization is essential for integrating the control seamlessly into diverse UI designs in .NET WinForms applications.

***

### Key Points

<table><thead><tr><th width="157">Aspect</th><th>Detail</th></tr></thead><tbody><tr><td>Properties</td><td>BorderWidth, BorderColor, TopLeftRadius, TopRightRadius, BottomLeftRadius, BottomRightRadius, MakeRadial</td></tr><tr><td>Data Types</td><td>BorderWidth: float; BorderColor: Color; TopLeftRadius, TopRightRadius, BottomLeftRadius, BottomRightRadius: int; MakeRadial: bool</td></tr><tr><td>Default Values</td><td>BorderWidth: 1f; BorderColor: Color.FromArgb(30, 0, 0, 0); TopLeftRadius: 24; TopRightRadius: 0; BottomLeftRadius: 24; BottomRightRadius: 24</td></tr><tr><td>Category</td><td>Border (BorderWidth, BorderColor) and Corner Radius (TopLeftRadius, TopRightRadius, BottomLeftRadius, BottomRightRadius, MakeRadial)</td></tr><tr><td>Effects</td><td>Determines the thickness and color of the control's border and enables independent or unified rounding of corners to achieve desired aesthetics and usability</td></tr><tr><td>Mechanism</td><td>Changing these properties triggers a redraw via <code>Invalidate()</code>, ensuring that any updates to the border or corners are immediately reflected in the control's appearance</td></tr></tbody></table>

***

### Best Practices

<table><thead><tr><th width="287">Practice</th><th>Description</th></tr></thead><tbody><tr><td>Maintain Proportional Borders</td><td>Set BorderWidth values in proportion to the overall size of the control to ensure visual harmony.</td></tr><tr><td>Use Consistent Corner Radii</td><td>When a uniform appearance is desired, use MakeRadial or set all corner radii to similar values to maintain a cohesive look across the control.</td></tr><tr><td>Test with Various Color Schemes</td><td>Ensure that BorderColor complements the control's background and other UI elements to avoid visual clashes, especially when themes change dynamically.</td></tr></tbody></table>

***

### Common Pitfalls

<table><thead><tr><th width="246">Pitfall</th><th>Description</th></tr></thead><tbody><tr><td>Inconsistent Corner Values</td><td>Setting dramatically different values for each corner can lead to a disjointed and unbalanced visual appearance, especially if not intended by the design guidelines.</td></tr><tr><td>Overly Thick Borders</td><td>A BorderWidth that is too high may overpower the control’s content, reducing the emphasis on the icon and other visual elements.</td></tr><tr><td>Misuse of MakeRadial</td><td>Incorrect use of the MakeRadial property can inadvertently force the control into a circular shape even when a different aesthetic is desired.</td></tr></tbody></table>

***

### Usage Scenarios

<table><thead><tr><th width="276">Scenario</th><th>Description</th></tr></thead><tbody><tr><td>Custom Themed UI Integration</td><td>Adjusting BorderColor and BorderWidth can help the control blend seamlessly with custom application themes that require specific border styles and accent colors.</td></tr><tr><td>Adaptive Corner Styling</td><td>By modifying individual corner radii, developers can adapt the control’s shape to match surrounding elements, whether for rounded buttons or soft-edged panels in modern UIs.</td></tr><tr><td>Enforcing Circular Designs</td><td>Use the MakeRadial property to automatically set all corner radii to half the control’s height, ensuring a perfectly circular appearance suitable for many modern design languages.</td></tr></tbody></table>

***

### Real Life Usage Scenarios

<table><thead><tr><th width="234">Scenario</th><th>Description</th></tr></thead><tbody><tr><td>Dashboard Widgets</td><td>In a dashboard, using consistent rounded corners with a moderate border can create a cohesive look across multiple controls, enhancing the overall visual appeal.</td></tr><tr><td>Mobile-First Applications</td><td>For applications that require a touch-friendly design, smooth rounded corners achieved via MakeRadial can improve the user experience by providing familiar, soft UI elements.</td></tr><tr><td>Corporate Branding</td><td>Enterprises often require strict adherence to branding guidelines; tweaking the border and corner configurations ensures that the control aligns with the company’s visual identity.</td></tr></tbody></table>

***

### Troubleshooting Tips

<table><thead><tr><th width="269">Tip</th><th>Description</th></tr></thead><tbody><tr><td>Confirm Property Updates</td><td>Verify that changes to BorderWidth, BorderColor, or corner radii are being applied by checking that the control calls <code>Invalidate()</code> and redraws as expected.</td></tr><tr><td>Test Different Combinations</td><td>Experiment with different values for individual corner radii and the MakeRadial property to ensure that the intended shape is achieved, especially when resizing the control.</td></tr><tr><td>Monitor Redraw Performance</td><td>If the control flickers or redraws slowly, review the frequency of property changes and ensure that batch updates are used to minimize unnecessary redraws.</td></tr></tbody></table>

***

### Code Examples

#### Basic Integration

```csharp
using System;
using System.Drawing;
using System.Windows.Forms;
using SiticoneNetFrameworkUI;

public class MainForm : Form
{
    public MainForm()
    {
        // Initialize the theme switcher control with custom border and corner settings
        var themeSwitcher = new SiticoneThemeSwitcher
        {
            BorderWidth = 2f,                    // Set a thicker border for emphasis
            BorderColor = Color.DarkGray,        // Choose a neutral border color that fits the UI design
            TopLeftRadius = 20,                  // Custom radius for top left corner
            TopRightRadius = 20,                 // Custom radius for top right corner
            BottomLeftRadius = 20,               // Custom radius for bottom left corner
            BottomRightRadius = 20,              // Custom radius for bottom right corner
            MakeRadial = false,                  // Set to false to allow individual corner configuration
            Size = new Size(120, 120),
            Location = new Point(50, 50)
        };

        Controls.Add(themeSwitcher);
    }
    
    [STAThread]
    public static void Main()
    {
        Application.EnableVisualStyles();
        Application.Run(new MainForm());
    }
}
```

#### Using MakeRadial for a Circular Appearance

```csharp
using System;
using System.Drawing;
using System.Windows.Forms;
using SiticoneNetFrameworkUI;

public class RadialForm : Form
{
    public RadialForm()
    {
        // Initialize the theme switcher control with a circular appearance
        var themeSwitcher = new SiticoneThemeSwitcher
        {
            BorderWidth = 1f,
            BorderColor = Color.Black,
            MakeRadial = true,                   // Automatically sets all corners to create a circular control
            Size = new Size(100, 100),
            Location = new Point(30, 30)
        };

        Controls.Add(themeSwitcher);
    }
    
    [STAThread]
    public static void Main()
    {
        Application.EnableVisualStyles();
        Application.Run(new RadialForm());
    }
}
```

#### Dynamic Adjustment of Border and Corner Properties

```csharp
// Assuming themeSwitcher is an existing instance of SiticoneThemeSwitcher

// Method to update border and corner properties at runtime
void UpdateBorderAndCorners(float newBorderWidth, Color newBorderColor, int newCornerRadius, bool makeRadial)
{
    themeSwitcher.BorderWidth = newBorderWidth;
    themeSwitcher.BorderColor = newBorderColor;
    
    if (makeRadial)
    {
        themeSwitcher.MakeRadial = true; // This will override individual corner settings to make the control circular
    }
    else
    {
        themeSwitcher.MakeRadial = false;
        themeSwitcher.TopLeftRadius = newCornerRadius;
        themeSwitcher.TopRightRadius = newCornerRadius;
        themeSwitcher.BottomLeftRadius = newCornerRadius;
        themeSwitcher.BottomRightRadius = newCornerRadius;
    }
    
    // The control will automatically invalidate and redraw with the updated settings
}
```

***

### Review

<table><thead><tr><th width="221">Aspect</th><th>Review</th></tr></thead><tbody><tr><td>Customization Depth</td><td>The combination of border and corner properties provides deep customization, allowing for both subtle and dramatic visual adjustments.</td></tr><tr><td>Integration Flexibility</td><td>Developers can easily switch between individually rounded corners and a fully radial design using the MakeRadial property, adapting the control to diverse UI requirements.</td></tr><tr><td>Visual Impact</td><td>Appropriate border widths and corner configurations significantly enhance the control's aesthetic, contributing to a polished and modern user interface in WinForms applications.</td></tr></tbody></table>

***

### Summary

<table><thead><tr><th width="255">Summary Point</th><th>Description</th></tr></thead><tbody><tr><td>Enhanced Aesthetic Control</td><td>Border and Corner Configuration offers precise control over the control’s border thickness, color, and corner curvature, enabling a wide range of design customizations.</td></tr><tr><td>Ease of Use</td><td>Properties such as MakeRadial simplify the process of achieving a circular appearance, while individual corner properties provide flexibility for custom designs.</td></tr><tr><td>Versatility</td><td>This feature is versatile enough to support various design languages, from minimalistic flat designs to more traditional UI styles with defined borders and rounded corners.</td></tr></tbody></table>

***

### Additional Sections

#### Performance Considerations

<table><thead><tr><th width="220">Consideration</th><th>Description</th></tr></thead><tbody><tr><td>Redraw Optimization</td><td>Frequent changes to border and corner properties can trigger multiple redraws; developers should batch property changes to minimize performance overhead during runtime adjustments.</td></tr><tr><td>Hardware Acceleration</td><td>Ensure that the application and its environment take advantage of hardware acceleration for smooth rendering of complex border and corner effects, especially on larger displays.</td></tr></tbody></table>

#### Customization Tips

<table><thead><tr><th width="264">Tip</th><th>Description</th></tr></thead><tbody><tr><td>Consistent Design Language</td><td>Maintain consistency by aligning border and corner settings with other UI elements throughout the application to create a unified visual identity.</td></tr><tr><td>Preview and Iterate</td><td>Use design-time preview features to experiment with different values for corner radii and border settings to determine the optimal configuration before deploying changes.</td></tr><tr><td>Document Custom Values</td><td>When using non-standard values for borders and corners, document the rationale and intended design outcome for future reference and team collaboration.</td></tr></tbody></table>

***

This extensive documentation for the Border and Corner Configuration feature provides a comprehensive guide for developers to customize the appearance of the theme switcher control. The detailed tables, code examples, and troubleshooting tips are designed to help integrate and optimize these settings for a variety of UI designs in .NET WinForms applications.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs-siticoneframework.gitbook.io/home/net-framework-or-net-core-ui/utility-controls/siticone-themeswitcher/border-and-corner-configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
