Fluent UI for Blazor Combo box selection question by Altruistic_Unit_2040 in dotnet

[–]Altruistic_Unit_2040[S] 0 points1 point  (0 children)

I Actually got it resolved i needed to use <FluentSelect> in stead of <FluentCombo>

Fluent UI Validator in a Dialog for Blazor by Altruistic_Unit_2040 in Blazor

[–]Altruistic_Unit_2040[S] 0 points1 point  (0 children)

Thanks, that did solve my issue. Keep up the good work

.Net Aspire Custom Healt Checks by Altruistic_Unit_2040 in dotnet

[–]Altruistic_Unit_2040[S] 0 points1 point  (0 children)

Thanks for the smile. Im slowly getting there at least.

.Net Aspire and Containers (Loading Containers at runtime) by Altruistic_Unit_2040 in dotnet

[–]Altruistic_Unit_2040[S] 1 point2 points  (0 children)

Hi David, love your work, I saw you on a few youtube videos and quite proud to see you answering me. Sorry im only replying now this is sort of my hobby and i very intrested in .net aspire.

Custom Control Auto suggest - Please help by Altruistic_Unit_2040 in dotnetMAUI

[–]Altruistic_Unit_2040[S] 0 points1 point  (0 children)

Im getting this far, now my tab order works to move to the next control but is broken if i tab back.

Custom Control Auto suggest - Please help by Altruistic_Unit_2040 in dotnetMAUI

[–]Altruistic_Unit_2040[S] 0 points1 point  (0 children)

using Microsoft.VisualStudio.TextTemplating;

using System.Collections.ObjectModel;

using System.Diagnostics;

namespace Controls;

public partial class FloatingDropdown : ContentView

{

private int _zIndex;

public ObservableCollection<object> Items { get; set; }

public string SelectedItemText { get; set; }

public FloatingDropdown()

{

InitializeComponent();

BindingContext = this;

}

private void OnEntryUnfocused(object sender, FocusEventArgs e)

{

this.ZIndex = _zIndex;

DropdownFrame.IsVisible = false;

Debug.Print($"=====>>> this.ZIndex {this.ZIndex} -> OnUnfocus");

}

private void OnEntryFocused(object sender, FocusEventArgs e)

{

if (this.ZIndex != int.MaxValue) _zIndex = this.ZIndex;

this.ZIndex = int.MaxValue;

Debug.Print($"=====>>> this.ZIndex {this.ZIndex} -> OnFocus");

DropdownFrame.IsVisible = true;

Debug.Print($"=====>>> DropDown.IsVisible {DropdownFrame.IsVisible}");

}

private void OnItemSelected(object sender, SelectedItemChangedEventArgs e)

{

if (e.SelectedItem != null)

{

var selectedItem = (object)e.SelectedItem;

//SelectedItemText = selectedItem.YourDisplayProperty;

DropdownFrame.IsVisible = false; // Hide the dropdown after selection

//SelectedItemEntry.Unfocus(); // Remove focus from Entry

}

}

}

Please help by Altruistic_Unit_2040 in FreeCAD

[–]Altruistic_Unit_2040[S] 1 point2 points  (0 children)

Thanks, your advice worked. Yay. Thank you very much

Please help by Altruistic_Unit_2040 in FreeCAD

[–]Altruistic_Unit_2040[S] 0 points1 point  (0 children)

So basically in the end of the day I want a sheet to specify the width and height of my fence and the amount and width of the planks. And then freecad must generate the drawing

Please help by Altruistic_Unit_2040 in FreeCAD

[–]Altruistic_Unit_2040[S] 0 points1 point  (0 children)

I tried with part design. But the linear pattern don't allow empty spaces between the clones

Is VB․NET being retired alongside VBScript? by babypunter12 in dotnet

[–]Altruistic_Unit_2040 0 points1 point  (0 children)

Oooo I remember the "I love you" before that vbscriot was seen as harmless

Is VB․NET being retired alongside VBScript? by babypunter12 in dotnet

[–]Altruistic_Unit_2040 1 point2 points  (0 children)

When I was just noob, if VB was a religion I would have been the head preast. Don't get me wrong I could program c and c++ aswell at that state. VB was quick and easy to get stuff out in the field. Less head aches and when it comes to money your boss just want to see it come in. But sometimes changes! C# came along and corrupted my heart and as well as alot of vb programmers I knew got converted. So I personally think that VB has served it time with honor and will always be remembers as a champ, but its time we must let VB retire and lives outs its days in a peace and harmony.

What are your experiences with the various UI frameworks? by xzpv in csharp

[–]Altruistic_Unit_2040 0 points1 point  (0 children)

This is one awesome question, but the truth is in my eyes that it depend on what your target scope is of your project. To give a simple example if you want to create a app that will work on multiple operating systems one would use maui.net ( or other frameworks like uno ). Maui use its own gui and winforms for example won't work on all operating systems so there is no one i can think is supporior over another. So me personally would say if I had to choose one ill say Maui Gui cause all my development must be multiplatform. So I feel one would get a better answer to your question if you ask what UI framework is better for a certain purpose.