小编Jay*_*asa的帖子

Orchard CMS - 在帖子中删除标题和元数据(发布日期)


如何删除帖子中的标题和元数据(已发布数据)?可以在Placement.info中完成吗?我尝试创建自定义内容,但看起来不是最佳解决方案.我刚刚用CSS完成了它,但我知道这可以用另一种方式完成.

orchardcms

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

覆盖ToggleButton样式

我的窗口中有一个ToggleButton,并在我的ResourceDictionary中设置样式.它在ResourceDictionary中的原因是因为我很快就会有几个或更多的ToggleButton具有相同的外观.

<Style x:Key="Standardbutton" TargetType="{x:Type ToggleButton}">
    <Setter Property="FontSize" Value="18" />
    <Setter Property="Foreground" Value="White" />
    <Setter Property="Background">
        <Setter.Value>
            <ImageBrush ImageSource="Resources/Standard_Button_Normal.png" />
        </Setter.Value>
    </Setter>
    <Setter Property="Height" Value="56" />
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="ToggleButton">
                <Border Name="border" BorderThickness="0" Padding="0,0" BorderBrush="DarkGray" CornerRadius="0" Background="{TemplateBinding Background}">
                    <ContentPresenter HorizontalAlignment="Left" VerticalAlignment="Center" Name="content" Margin="15,0,0,0"/>
                </Border>
                <ControlTemplate.Triggers>
                    <Trigger Property="IsChecked" Value="True">
                        <Setter Property="Background">
                            <Setter.Value>
                                <ImageBrush ImageSource="Resources/Standard_Button_Pressed.png" />
                            </Setter.Value>
                        </Setter>
                        <Setter Property="Foreground">
                            <Setter.Value>
                                <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                                    <GradientStop Color="#FFF9CE7B" Offset="0"/>
                                    <GradientStop Color="#FFE88C41" Offset="1"/>
                                </LinearGradientBrush>
                            </Setter.Value>
                        </Setter>
                    </Trigger>
                </ControlTemplate.Triggers>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>
Run Code Online (Sandbox Code Playgroud)

现在这个ToggleButton样式有一个默认背景,当"IsChecked"为真时,它将有不同的背景(正如你在我上面的XAML代码中看到的那样).

现在这些切换按钮必须有图标+文字组合,就像我在这里做的那样(抱歉我的蹩脚XAML代码)

<ToggleButton …
Run Code Online (Sandbox Code Playgroud)

wpf xaml

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

Windows Phone - PhotoChooserTask没有显示

我遇到了这个PhotoChooserTask的问题,因为当我在我的设备上部署它时它没有显示出来.它虽然在模拟器中工作.我做了一个非常简单的代码,但我不确定为什么它没有显示.

// inside the button
PhotoChooserTask selectphoto = new PhotoChooserTask();
selectphoto.ShowCamera = true;
selectphoto.Completed += new EventHandler<PhotoResult>(selectphoto_Completed);
selectphoto.Show();
// -------------

void selectphoto_Completed(object sender, PhotoResult e)
{
    if (e.TaskResult == TaskResult.OK)
    {
        // blah blah blha
    }
}
Run Code Online (Sandbox Code Playgroud)

任何的想法?

我正在使用Windows Phone 7 Mango(7.1)

------更新----

我拿了e.TaskResult,我总是得到"取消".有什么不对?

我有个主意......也许是因为Zune正在运行:P

---更新 - 解决了.Zune正在运行:P

windows-phone-7.1

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

Windows 运行时的 SQLite 返回“只读”错误 SQLiteException 对象

Windows 运行时的 SQLite 在我的 SQLite 数据库中插入新记录时返回“只读”错误 SQLiteException 对象。

我不确定是什么原因造成的,但这个“只读”错误是我得到的 在此处输入图片说明

我试图更新数据库安全性,甚至蹩脚地添加了“每个人”以确保但我仍然收到该错误。知道为什么吗?

sqlite windows-runtime

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

在Inno Setup中传递条件参数

我是Inno Setup的新手,我已经阅读了文档.现在我知道Inno Setup可以接受不同的/自定义参数,并且可以通过Pascal脚本进行处理.但问题是,我不知道如何用Pascal写.

我希望我能得到关于编码的帮助.

我想将/ NOSTART参数传递给我的安装文件,该文件告诉安装程序禁用(取消选中)"启动"上的复选标记,如果未提供/ NOSTART,它将启用(选中)复选标记"启动"

在此输入图像描述

或者,如果可能,不需要启动页面,并通过代码执行所有操作.

inno-setup

4
推荐指数
2
解决办法
7209
查看次数

使用JSON.NET添加布尔属性

我有这个JSON数据

{
    "extensions": {
        "settings" : {
            "extension1": {
                "property1": "value 1",
                "property2": "value 2"
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

我的目标是使用JSON.NET添加一个新的布尔属性,如下所示

{
    "extensions": {
        "settings" : {
            "extension1": {
                "property1": "value 1",
                "property2": "value 2",
                "bool_property": true
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

我只有这个代码而且我坚持使用AddAfterSelf和AddBeforeSelf

string pref = "path_of_the_preferences_file";
string _pref = string.empty;
using (StreamReader reader = new StreamReader(pref, Encoding.UTF8))
{
    _pref = reader.ReadToEnd();
}

// REFORMAT JSON.DATA
JObject json = JObject.Parse(_pref);
var extension1 = json["extensions"]["settings"]["extension1"];
Run Code Online (Sandbox Code Playgroud)

如何插入新的布尔属性"bool_property"?

谢谢

c# json json.net

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

通过代码使卸载注册表项成为条件

如何CreateUninstallRegKey通过代码禁用Inno Setup ?

我在Inno Setup中创建的setup.exe文件接受参数,例如:

setup.exe -a
Run Code Online (Sandbox Code Playgroud)

要么

setup.exe -b
Run Code Online (Sandbox Code Playgroud)

如果-a提供了参数,则启用CreateUninstallRegKey,或者如果-b提供了参数,则禁用CreateUninstallRegKey.

无论如何设置CreateUninstallRegKey通过代码或我必须创建一个函数然后调用脚本部分中的函数?

这个帮助页面解释了使用{code:...}常量,但不幸的是我收到了这个错误:

代码和错误消息的屏幕截图

谢谢

inno-setup

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

如何使用集合初始值设定项创建新字典?

如果你可以在List中执行此操作

List<int> a = new List<int>() {
   2, 4, 6, 8, 10
};
Run Code Online (Sandbox Code Playgroud)

你怎么能在字典里做同样的事情?

Dictionary<int, bool> b = new Dictionary<int, bool>() {
   ?, ?, ?
};
Run Code Online (Sandbox Code Playgroud)

c#

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