小编Shr*_*key的帖子

浏览器子窗口中的角度组件

从Angular应用程序中可以创建浏览器的子窗口并在其中显示一些预定义的角度组件.

澄清:我不是在寻找模态对话解决方案.

browser components childwindow angular angular6

14
推荐指数
4
解决办法
4312
查看次数

角度动态组件 - 添加类和其他属性

我使用以下代码来创建动态组件

import {
  Component, OnInit, ViewContainerRef, ViewChild, ViewChildren,
  ReflectiveInjector, ComponentFactoryResolver, ViewEncapsulation, QueryList, Input, AfterViewInit
} from '@angular/core';
import { Router, ActivatedRoute } from '@angular/router';
import { forEach } from '@angular/router/src/utils/collection';
import { IComponent } from 'app/app.icomponent';


@Component({
  encapsulation: ViewEncapsulation.None,
  selector: 'dynamic-component',
  entryComponents: [HomeComponent, HighlevelSignalComponent],
  template: `
    <div #dynamicDiv [ngClass]="classFromMenu" >
     <ng-template #dynamicComponentContainer></ng-template>
    </div>
  `,
  styleUrls: [
    './dynamic-content.component.css'
  ],
})

export class DynamicComponent implements IComponent, OnInit, AfterViewInit {
  classFromMenu: any;
 @ViewChild('dynamicComponentContainer', { read: ViewContainerRef }) dynamicComponentContainer: ViewContainerRef;


  constructor(private resolver: ComponentFactoryResolver, private …
Run Code Online (Sandbox Code Playgroud)

css attributes dynamic angular

11
推荐指数
3
解决办法
6284
查看次数

User.config是如何创建的以及如何使用它

我开始阅读有关配置文件的内容,并阅读有关user.config的内容.用Google搜索,但无法找到它是如何创建的以及如何使用它.另请阅读每个用户将创建一个单独的user.config.甚至在StackOverflow中阅读问题,但它们没有帮助.谁能指出我正确的资源.提前致谢 :)

感谢@Ramesh,@ Michael和@Frozendragon的回答.浏览过您发布的文章.假设我有一个Web应用程序和3个名为"A"的用户,B"和"C"正在使用它们.我有一个app.config,其中我提供了默认值.我读到这些值可以按顺序更改并且将是保存在UserName.config文件中.这是我丢失的地方.如果值保存在相应的用户配置文件中,当同一用户再次尝试打开应用程序时它们如何被取回?我的应用程序如何知道哪些文件看?

c# configuration-files application-settings

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

如何在wpf应用程序中显示网页的信息

我是WPF应用程序的新手.我想创建一个显示网页信息的应用程序.例如,我的应用程序应使用特定网站中的数据显示特定公司的股票价格.

我想用moneycontrol来获取infosys的股票价格......我怎样才能做到这一点?

c# wpf web

3
推荐指数
1
解决办法
2896
查看次数

为什么抛出ApplicationException?

我只是试验Mutex并编写了以下代码.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace Mutex_WaitOnewithTimeouts
{
    class Program
    {
        private static Mutex mut = new Mutex();
        private static int numOfThreads = 5;
        private static int numOfIterations = 3;
        private static Random rand = new Random();

        static void Main(string[] args)
        {
            Thread[] threads = new Thread[5];
            for (int num = 0; num < numOfThreads; num++)
            {
                threads[num] = new Thread(new ThreadStart(MyThreadProc));
                threads[num].Name = String.Format("Thread{0}", num);
                threads[num].Start();
            }
            Console.Read();
        }

        private static void MyThreadProc() …
Run Code Online (Sandbox Code Playgroud)

.net c# multithreading mutex

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

如何在鼠标悬停时更改边框粗细

我正在研究控件的风格.我想在鼠标悬停完成后更改控件的borderthickness.我想在样式本身中编写它,而不是在代码隐藏中编写它

所以,我尝试了以下方式.

<VisualState x:Name="MouseOver">
<Storyboard>
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="Border" Storyboard.TargetProperty="BorderThickness">
<SplineDoubleKeyFrame  KeyTime="0" Value="2" />                                   
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</VisualState>
Run Code Online (Sandbox Code Playgroud)

但这是一个错误.

我该如何实现此功能.

.net silverlight styles blend

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