小编mm8*_*mm8的帖子

在没有setInterval的情况下检测类更改

我有一个div以编程方式添加的其他类.如何在不使用此setInterval实现的情况下检测类名更改?

setInterval(function() {
    var elem = document.getElementsByClassName('original')[0];
    if (elem.classList.contains("added")) { detected(); }
}, 5500);
Run Code Online (Sandbox Code Playgroud)

MutationObserver?

html javascript setinterval mutation-observers

16
推荐指数
1
解决办法
8308
查看次数

如何使用LINQ创建泛型函数?

根据这里的信息.

我找到了如何使用Entity Framework删除孤儿.

public void SaveChanges()
{
    context.ReportCards
        .Local
        .Where(r => r.Student == null)
        .ToList()
        .ForEach(r => context.ReportCards.Remove(r));

    context.SaveChanges();
}
Run Code Online (Sandbox Code Playgroud)

我想知道如何为这部分制作通用函数,因为它可能经常被使用:

context.ReportCards
        .Local
        .Where(r => r.Student == null)
        .ToList()
        .ForEach(r => context.ReportCards.Remove(r));
Run Code Online (Sandbox Code Playgroud)

我想过这样的事情:

public void SaveChanges()
{
   RemoveOrphans(Student, ReportCards) 
   context.SaveChanges();
}

private void RemoveOrphans<T>(T sourceContext, T orphan)
{    
    context.orphan
        .Local
        .Where(r => r.sourceContext == null)
        .ToList()
        .ForEach(r => context.orphan
        .Remove(r));
}
Run Code Online (Sandbox Code Playgroud)

但当然它不起作用.有什么建议?

c# linq generics entity-framework

6
推荐指数
1
解决办法
846
查看次数

System.ArgumentException:“值不在预期范围内。” 在内容对话框上

我正在尝试在我的 UWP (WinUI3) 应用程序中创建一个登录系统,当我尝试启动登录内容对话框时,它崩溃并抛出此错误:

System.ArgumentException:“值不在预期范围内。”

await messageDialog.ShowAsync();

app.xaml.cs 上的代码:

protected override async void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)
{

    m_window = new MainWindow();
    m_window.Activate();

    Login();

}

protected async void Login()
{
    var messageDialog = new ContentDialogs.LoginDialog();
    await messageDialog.ShowAsync();

    if (App.Aplicacao.Utilizador == null)
    {
        m_window.Close();
        return;
    }
}
Run Code Online (Sandbox Code Playgroud)

内容对话框 XAML:

<ContentDialog
    x:Class="xizSoft.ContentDialogs.LoginDialog"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:xizSoft.ContentDialogs"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    Background="{ThemeResource SystemControlAcrylicWindowBrush}">

    <Grid>
    </Grid>
</ContentDialog>
Run Code Online (Sandbox Code Playgroud)

隐藏代码:

public LoginDialog()
{
    this.InitializeComponent();
}
Run Code Online (Sandbox Code Playgroud)

c# uwp winui winui-3

6
推荐指数
1
解决办法
6200
查看次数

WINUI3 内容对话框不显示

我试图在我的应用程序中显示一个弹出窗口来编辑品牌,但它没有显示。

我调用对话框的函数:

private async Task EditBrandAsync(Brand brand)
{
    var dialog = new ContentDialogs.EditBrandDialog(brand);
    await dialog.ShowAsync();
}
Run Code Online (Sandbox Code Playgroud)

内容对话框 XAML:

<ContentDialog
    x:Class="xizSoft.ContentDialogs.EditBrandDialog"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:xizSoft.ContentDialogs"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">

    <StackPanel>
        <TextBlock Text="Marca" Style="{StaticResource SubheaderTextBlockStyle}"/>

        <TextBox Header="Nome" Text="{Binding Name}"/>
        <TextBox Header="Logotipo" Text="{Binding LogoFileName}"/>

        <StackPanel>
            <Image Source="{Binding LogoFileName}"/>
        </StackPanel>
    </StackPanel>
</ContentDialog>
Run Code Online (Sandbox Code Playgroud)

隐藏代码:

namespace xizSoft.ContentDialogs
{
  public sealed partial class EditBrandDialog : ContentDialog
    {
        public Brand _brand {get; set;}

        public EditBrandDialog(Brand brand)
        { 
            this.InitializeComponent();
            this.DataContext = _brand = brand;
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

我已经尝试进行调试并且正在调用内容对话框,所以我不知道为什么它没有显示。

c# xaml uwp winui winui-3

6
推荐指数
1
解决办法
3685
查看次数

以编程方式设置x:Uid的值

我在XAML视图的代码隐藏文件中创建一个AppBarButton.目前,我在XAML中定义了AppBarButton,如下所示:

<AppBarButton x:Name="SelectVisitAppBarButton" x:Uid="AppBar_TransferVisit"  Margin="0,0,12,0" Icon="Bullets" Style="{StaticResource TransferAppBarButtonStyle}" IsEnabled="{Binding ScheduleViewVm.IsVisitSelectionEnable}" Click="SelectVisit_Click" />    
Run Code Online (Sandbox Code Playgroud)

我想将此XAML转换为C#代码.以下是我到目前为止的代码.

AppBarButton SelectVisitAppBarButton = new AppBarButton();    
SelectVisitAppBarButton.Margin = new Thickness(0, 0, 12, 0);
SymbolIcon bulletSymbol = new SymbolIcon();
bulletSymbol.Symbol = Symbol.Bullets;
SelectVisitAppBarButton.Icon = bulletSymbol;
SelectVisitAppBarButton.Style = App.Current.Resources["TransferAppBarButtonStyle"] as Style;
SelectVisitAppBarButton.Click += SelectVisit_Click;
Binding b = new Binding();
b.Source = _viewModel.ScheduleViewVm.IsVisitSelectionEnable;
SelectVisitAppBarButton.SetBinding(Control.IsEnabledProperty, b);
Appbar.Children.Add(SelectVisitAppBarButton);
Run Code Online (Sandbox Code Playgroud)

我唯一想要的是将x:Uid ="AppBar_TransferVisit"转换为其等效的C#代码.对此的任何帮助都非常感谢.

谢谢,Naresh Ravlani.

c# xaml windows-mobile winrt-xaml uwp

5
推荐指数
1
解决办法
1334
查看次数

更改 WPF DatePicker 文本框的外观

更改 WPF DatePicker 的 Foreground 属性确实会更改文本框中文本的颜色,但更改 Background 属性不会。但是您可以通过设置包含的 DatePickerTextBox 的样式来更改它。所以我最终得到了这个:

<DatePicker Foreground="Yellow" >
    <DatePicker.Resources>
        <Style TargetType="{x:Type DatePickerTextBox}" >
            <Setter Property="Background" Value="Black" />
        </Style>
    </DatePicker.Resources>
</DatePicker>
Run Code Online (Sandbox Code Playgroud)

有没有更整洁的方法来做到这一点而不对整个控件进行模板化?有没有办法只对命名部分进行模板化,即 PART_TextBox?

c# wpf datepicker controltemplate

5
推荐指数
2
解决办法
1万
查看次数

WPF访问列表视图代码隐藏的滚动查看器

我需要从代码隐藏访问列表视图的滚动查看器。这是我的列表视图的定义

<ListView Grid.Row="1" ItemsSource="{Binding Path=SpecList, UpdateSourceTrigger=PropertyChanged}"  
                            Name="mylistview"
                            ItemTemplate="{StaticResource SpecElementTemplate}"
                            Background="{StaticResource EnvLayout}"
                            ScrollViewer.HorizontalScrollBarVisibility="Visible"
                            ScrollViewer.VerticalScrollBarVisibility="Disabled"
                            ItemContainerStyle="{StaticResource MyStyle}"
                            BorderBrush="Blue"
                            BorderThickness="20"
                            Margin="-2">
    <ListView.ItemsPanel>
        <ItemsPanelTemplate>
            <StackPanel Orientation="Horizontal" />
        </ItemsPanelTemplate>
    </ListView.ItemsPanel>
</ListView>
Run Code Online (Sandbox Code Playgroud)

我怎样才能获得滚动查看器?

谢谢

安德烈亚

c# wpf listview code-behind scrollviewer

5
推荐指数
1
解决办法
4590
查看次数

从另一个 ViewModel Xamarin.Forms 更新 ViewModel

我正在开发一个 Xamari.Forms 应用程序,其中有一个MainPageView.XamlMainPageViewModel.cs,而且我在 MainPageView.Xaml 中有 stackLayout ,我在其中动态加载视图(绑定到另一个视图模型)。当MainPageViewModel.cs发生一些更改时,我必须更新绑定到视图的第二个 ViewModel 中的一些值。我现在正在使用消息中心,但每次我都无法使用消息中心,因为我必须取消订阅它,否则它会被多次调用。是否有任何优化的方法可以在不离开屏幕的情况下从另一个视图模型调用和更新一个视图模型。

c# xamarin.android xamarin xamarin.forms

5
推荐指数
1
解决办法
3517
查看次数

单击按钮后更改按钮的效果WPF

Button按下时,我想应用以下更改。

<Button>
    <Button.Effect>
        <DropShadowEffect BlurRadius="10" ShadowDepth="5"/>
    </Button.Effect>
</Button>
Run Code Online (Sandbox Code Playgroud)

c# wpf xaml

5
推荐指数
1
解决办法
1591
查看次数

我需要在发布 exe 文件时在每个 dll 中启用 ReadyToRun 吗?

我们知道,从 .net core 3.0 开始就有 ReadyToRun 编译选项。

有几个由.net core制作的dll。

我创建了一个WPF项目并引用了上面的所有dll。

现在我即将使用 ReadyToRun 发布项目,但有一个问题我不太确定。

当我只编译WPF项目时,编译器是否会使用ReadyToRun编译所有参考dll?

或者我必须在其项目中与ReadyToRun一一编译?

为什么我问这个问题,编译这么多目标时间不同的dll这么麻烦。我想找到一种快速的方法来做到这一点。

谢谢 。

c# wpf .net-core

5
推荐指数
1
解决办法
1414
查看次数