DevExpress Tutorial - Fluent Design Form | FoxLearn

preview_player
Показать описание
Fluent Design Form using DevExpress Winforms Control in C#.

Devexpress Tutorial: Partial transparency, Adaptive layout, Accordion integration.

The FluentDesignForm is a Windows 10-inspired form that features:

An embedded Hamburger Menu (AccordionControl)
Adaptive Layout mode for the Hamburger Menu
Acrylic Material effect (a partially transparent texture)
Reveal Highlight visual effect

Note that the full-size mode works best with modern flat skins, so it currently requires either The Bezier or one of the Office 2016 DevExpress skins advanced c#.

Through this video you will learn the following topics:

fluent design form container
devexpress for winform
devexpress solution for winforms
devexpress controls for windows forms
fluent design acrylic material effect

#devexpress, #fluentdesign
Рекомендации по теме
Комментарии
Автор

Good morning, how can I do this myself, but instead of a usercontrol, is it a form?

marcolotito
Автор

hello
i can't use the northwindentites please where is the problem
i have a missing library?

crazynou
Автор

Hi thank you for share this video, it's very helpful :)
But I have a question (maybe you can help me). If the AccordionControl is shown in DisplayMode 'Minimal' and an element (group) is expanded that contains additional items, there is an unused/unecessary empty space after the last item. Is there a way to reduce the height of that control?

ghinaalodia
Автор

Thanks for your tutorial. Very helpful. But user controls/forms can not be adaptive :(
I mean, the devexpress Layout Control is not working at user controls, only at forms

mikeb
Автор

Hi, thanks for the tutorial, works great. Just a little upgrade to your code, if the object is disposed and you try to open it again you will get an exception. to correct that you just have to add a condition if (_instance == null || _instance.IsDisposed), the code will look like this:

public static ucCategories Instance
{
get
{
if (_instance == null || _instance.IsDisposed)
_instance = new ucCategories();

return _instance;
}
}

pipetabor
Автор

How can i see the programm windows in visual basic ? it only shows me the code. Im on VS2019 Community

punchnergy
Автор

what version devexpress are u using, y tryit v17.2.3 i cant using

interactivo
Автор

CAN I ADJUST ACRYLIC COLOR LIKE ITS WHITISH BY DEFAULT

shubhamtakankhar
Автор

How will I do this if I'm using vb.net? I don't know how to implement FluentForm using vb.net.. thanks in advance :)

ronelalinea
Автор

Everything done as in example, no errors, no warnings, but there is no data in container control after Start. What can be wrong? I use cyrillic for Forms Text, and also there is some cyrillic in database.

brankoboskovic
Автор

Dear can we use this fluent design as an mdi parent?

iamahmer
Автор

uhm it says does not contain definition for 'instance'

toshiii
Автор

Hello, your video is very useful! Helped me solve many problems! I tried to find this type of video in China before, but I didn't find it, so I want to move these videos to China (non-profit). May I?

vqculis
Автор

Where's the devexpress download link?

vedy
Автор

get: not all code paths return a value

jmctx
Автор

Can you do a tutorial on making your own Designs please that would be cool.

ZombieNW
Автор

FluentDesignSystem is not showing for me

flutterify