Expanded and clarified solution/project documentation: - Added all top-level docs and docs/ folder as solution items in .sln files - Inserted maintenance notices in all project and subfolder READMEs: require .md sync with code - Main READMEs now include project tables with TFM, purpose, and README links - ARCHITECTURE.md now details dependency graph and TFM rationale - CONVENTIONS.md and copilot-instructions.md require code reuse, no redundancy - Glossary and conventions updated to require terminology/rule updates with code changes - Emphasized DLL-only AyCode.Core refs and nopCommerce .NET 9.0 requirement - Clarified domain terms and intentional typos - No code logic changes; documentation and guidance only |
||
|---|---|---|
| .. | ||
| CardViews | ||
| Grids | ||
| AcButton.cs | ||
| AcComboBox.cs | ||
| AcComponentBase.cs | ||
| AcDxDateEdit.cs | ||
| AcFormLayoutItem.cs | ||
| AcMaskedInput.cs | ||
| AcMemo.cs | ||
| AcSpinEdit.cs | ||
| AcTextBox.cs | ||
| MgComponentsHelper.cs | ||
| MgLazyLoadContent.razor | ||
| README.md | ||
README.md
Components
DevExpress component wrappers and grid infrastructure for the AyCode Blazor component library. Each Ac* class extends a DevExpress Blazor control to allow project-wide customization from a single point.
Key Files
AcComponentBase.cs-- Abstract base class extendingDxComponentBase.AcButton.cs-- ExtendsDxButton.AcTextBox.cs-- ExtendsDxTextBox.AcComboBox.cs-- Generic wrapper forDxComboBox<TData, TValue>.AcDxDateEdit.cs-- Generic wrapper forDxDateEdit<T>.AcFormLayoutItem.cs-- ExtendsDxFormLayoutItem.AcMaskedInput.cs-- Generic wrapper forDxMaskedInput<T>.AcMemo.cs-- ExtendsDxMemo.AcSpinEdit.cs-- Generic wrapper forDxSpinEdit<T>.MgComponentsHelper.cs-- Placeholder helper class (currently empty).
Subfolders
CardViews/-- Generic card-based view component with pagination.Grids/-- Core grid system with SignalR data binding, toolbar, info panel, and layout persistence.