OoogaBooga
OoogaBooga
CC#
Created by OoogaBooga on 4/27/2024 in #help
✅ Linker Error Trying to Build OpenSSL Static Linking
No description
8 replies
CC#
Created by OoogaBooga on 12/17/2023 in #help
Hello, I have an app where I am trying to open a Content Dialog from inside a Content Dialog
Hello, I have an app where I am trying to open a Content Dialog from inside a Content Dialog but that's impossible to do, so I want to ask if there's any similar alternatives I can use to get similar results? I just need a menu / popout with a couple of buttons and text display. I am using WinUI3.
1 replies
CC#
Created by OoogaBooga on 11/28/2023 in #help
Trying to Bind command WinUI But Error
No description
2 replies
CC#
Created by OoogaBooga on 11/23/2023 in #help
X:Bind not working trouble
I'm trying to bind some text into my textblock from another document but I can't manage to do it, can someone help me please
<CalendarView.CalendarViewDayItemStyle>
<Style TargetType="CalendarViewDayItem">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Grid
Margin="5"
VerticalAlignment="Center"
HorizontalAlignment="Center"
>
<TextBlock FontSize="14"/>
<Button x:Name="Test123" Opacity="0">
<Button.Flyout>
<Flyout>
<StackPanel>
<TextBlock Style="{ThemeResource BaseTextBlockStyle}" Text="{x:Bind , Mode = OneWay}"/>
</StackPanel>
</Flyout>
</Button.Flyout>
</Button>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</CalendarView.CalendarViewDayItemStyle>
</CalendarView>
<CalendarView.CalendarViewDayItemStyle>
<Style TargetType="CalendarViewDayItem">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Grid
Margin="5"
VerticalAlignment="Center"
HorizontalAlignment="Center"
>
<TextBlock FontSize="14"/>
<Button x:Name="Test123" Opacity="0">
<Button.Flyout>
<Flyout>
<StackPanel>
<TextBlock Style="{ThemeResource BaseTextBlockStyle}" Text="{x:Bind , Mode = OneWay}"/>
</StackPanel>
</Flyout>
</Button.Flyout>
</Button>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</CalendarView.CalendarViewDayItemStyle>
</CalendarView>
2 replies
CC#
Created by OoogaBooga on 11/20/2023 in #help
WinUI3 Scheduler CalendarView
hello im trying to make a winui3 calendarview interactive calendar where I can predefine dates in my code and then when I launch the program I can click on specific dates and see whats scheduled for the specific date, how would I do it? I tried reading about selected calendar items but I couldn't really figure it out, can someone help me out please? I did something along these lines
calendarView1.SelectedDates.Add(new DateTime(2023, 11, 23));
calendarView1.SelectedDates.Add(new DateTime(2023, 11, 17));
calendarView1.SelectedDates.Add(new DateTime(2023, 11, 18));
calendarView1.SelectedDates.Add(new DateTime(2023, 11, 23));
calendarView1.SelectedDates.Add(new DateTime(2023, 11, 17));
calendarView1.SelectedDates.Add(new DateTime(2023, 11, 18));
But this doesn't exactly help me select a date I'd like to add dates that are scheduled in a calendar
41 replies