Kleidukos
Kleidukos
CC#
Created by Kleidukos on 10/8/2023 in #help
❔ Creating WinUi3 app for MSIX installer
I don't think so I want to double click a single file, while I have only a single file and my application is installed and I can run it The hard thing is, I want this with WinUi3 and WinAppSDK
5 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
And i checked, method is not null
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
In my app it works, why not here
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
Oh, i forgot the result...
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
How can i use MODiX ?
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
But it works I think this is because i use the type of ButtonBase and NavigationViewItem extends from it.
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
What does that mean ?
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
private void OnClickReflection()
{
var type = typeof(ButtonBase);

const BindingFlags flags = BindingFlags.Instance | BindingFlags.InvokeMethod;

var method = type.GetMethod("OnClick", flags);

method?.Invoke(this, null);
}
private void OnClickReflection()
{
var type = typeof(ButtonBase);

const BindingFlags flags = BindingFlags.Instance | BindingFlags.InvokeMethod;

var method = type.GetMethod("OnClick", flags);

method?.Invoke(this, null);
}
Works perfectly
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
I dont want to use the WPF UI navigation, i want to use my own, because wpf ui dont support multiple pages of the same type with there same instance
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
Sorry i cant do that because i have no access to the framework
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
I want to override OnClick() from WPF Button which is already overrwriten in a framework i use, but i have to use the button because its the NavigationViewItem from WPF UI
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
Maybe with reflection ?
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
Yeah, i mean something like that
43 replies
CC#
Created by Kleidukos on 8/22/2023 in #help
❔ Call base method in multiple inheritance
Okay
43 replies
CC#
Created by Kleidukos on 8/7/2023 in #help
❔ How can i move one item in list view with drag and drop
9 replies
CC#
Created by Kleidukos on 6/17/2023 in #help
❔ system.accessviolationexception: attempted to read or write protected memory
Then this means i got only the value from adress 0x00000 with the offset 1 (0x00001)
29 replies
CC#
Created by Kleidukos on 6/17/2023 in #help
❔ system.accessviolationexception: attempted to read or write protected memory
No
29 replies
CC#
Created by Kleidukos on 6/17/2023 in #help
❔ system.accessviolationexception: attempted to read or write protected memory
0x00000 <- pointer is here pointer + 1 0x00001 <- pointer is here print(pointer) Will it print 0x00000 or 0x00001 Its only pseudo code
29 replies
CC#
Created by Kleidukos on 6/17/2023 in #help
❔ system.accessviolationexception: attempted to read or write protected memory
Will the pointer stay in the new position or goes back after the call
29 replies