FaNim
MAUI how to make ContentPage and FlyoutPage as one page?
<?xml version="1.0" encoding="utf-8" ?>
<FlyoutPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="InzynieriaAplikacja.Controls.Flyout"
Title="Flyout"
FlyoutLayoutBehavior="Popover">
<FlyoutPage.Flyout>
<ContentPage Title="Flyout">
<Label Text="Flyout"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"/>
</ContentPage>
</FlyoutPage.Flyout>
<FlyoutPage.Detail>
<ContentPage>
<Label Text="Flyout Detail"
HorizontalTextAlignment="Center"
VerticalTextAlignment="Center"/>
</ContentPage>
</FlyoutPage.Detail>
</FlyoutPage>
here is my flyout page but i have not idea how to add here as theoretically detail my grid and whole content from like my mainview page? and do i need to make my mainview as flyout page do display it maybe? i don't how to deal with it
1 replies
Atlas MongoDB with .net maui Realm
Hello, I am trying to create an Android app that includes both administrator and user functionalities. The administrator should be able to add training data to the database, and users should be able to retrieve that data. However, I am having difficulty finding tutorials that cover these specific aspects. Can you please help me?
6 replies
❔ [WPF] Changing TextBlock text like renaming files in windows eplorer
Hello iam looking for how to implement renaming my ui elements that have textblock in grid same way as explorer doing this. I am using MVVM and i already have context menu implementation for that but i want to have option when i click to rename it will trigger command in my viewmodel that will trigger that renaming funcionality but i have no idea how to deal with edtiting that text and with losing focus, pressing enter to accept that rename etc etc
2 replies
✅ Prevent WPF applications from being detected as a virus
Hi, is there any way or technique to prevent .exe files downloaded from my repository from being detected by an antivirus? I want to build auto download in my app but when i download the .exe from my app to replace it, it is detected as a trojan and defender deletes it so i can make for user easy update system etc etc.
13 replies
✅ Problem with downloading .exe file from assets int Github releases
Hello iam trying to create auto-download function for my wpf application but when i download my .exe file from assets windows defender detects it as trojan and iam clueless with how can i bypass that
Here's the code: https://pastebin.com/5CpRf75M
6 replies
❔ How to work with Hwnd in c#
I want to open programs using Process.Start but all those programs have empty MainWindowHandle and MainWindowHandle do i need after it opens search again for all processes using EnumWindows or smth like that to refresh datas in this opened processes to have control or is there any better solution to search for hwnd and title data or just get it after Process.Start. And is it all safe?
5 replies