标签: converters

WPF - 如何将转换器应用于所有 DataGridTextColumn?

我想使用 WPF 应用转换器将值绑定到应用程序中的所有 DataGridTextColumn。

对于单个 DataGridTextColumn 转换器工作正常:

<DataGridTextColumn 
    Header ="Value" 
    Binding="{Binding Value, Converter={StaticResource decimalConverter}}" 
    />
Run Code Online (Sandbox Code Playgroud)

但在应用程序中,我在不同的 DataGrid 中得到了许多(超过 100 个)DataGridTextColumn,我会知道最佳的解决方案,而不是分别申请每个列转换器。

我知道使用样式可以修改所有类型的控件(例如前景)的某些属性,但不确定如何将这些属性用于绑定值和转换器?

c# wpf converters

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

如何使用 ffmpeg 向音频文件添加偏移或延迟?

我需要在文件开头进行偏移(一些沉默),所以我尝试了:

./ffmpeg -itsoffset 100 -i 3.mp3 offset_test.mp3
Run Code Online (Sandbox Code Playgroud)

但这不起作用。

如何使用 ffmpeg 添加偏移量到音频文件?

audio video ffmpeg converters offset

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

将 CSS 文件添加到 SelectPdf 转换器

如何向 SelectPdf 转换器添加/引入 CSS 文件?

我使用SelectPdf库将 HTML 字符串转换为 PDF 文件。

我的 CSS 文件位于cssFilePath

public byte[] Create(string htmlString)
{
   string cssFilePath = Path.Combine(Directory.GetCurrentDirectory(), "assets", "PruefReportDataTableFormat.css");

        string pdf_page_size = "A4";
        PdfPageSize pageSize = (PdfPageSize)Enum.Parse(typeof(PdfPageSize), pdf_page_size, true);

        string pdf_orientation = "Portrait";
        PdfPageOrientation pdfOrientation = (PdfPageOrientation)Enum.Parse(typeof(PdfPageOrientation), pdf_orientation, true);

        int webPageWidth = 1024;
        int webPageHeight = 0;

        HtmlToPdf converter = new HtmlToPdf();

        converter.Options.PdfPageSize = pageSize;
        converter.Options.PdfPageOrientation = pdfOrientation;
        converter.Options.WebPageWidth = webPageWidth;
        converter.Options.WebPageHeight = webPageHeight;

        PdfDocument doc = converter.ConvertHtmlString(htmlString);
        byte[] result = doc.Save(); …
Run Code Online (Sandbox Code Playgroud)

c# converters html-to-pdf selectpdf

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

如何将带有单元格分隔符的 python 脚本转换为 jupyter 笔记本?

我主要使用 Spyder 进行数据分析,并且对它非常满意。在那里,您可以在普通 Python 脚本中使用 Jupyter Notebooks 的单元功能# %%来分隔单个代码单元(以及执行块)。同样的事情也可以在 Atom with Hydrogen 中实现。

我正在寻找的是一种将这些脚本转换为 jupyter notebook 的方法,在每个脚本中自动拆分单元格 # %%. 我将用来记录、解释和共享我的工作流程的笔记本,方法是插入一些 Markdown 并可能保存为 pdf 或 html。

转换可以自动完成吗?这可能可行nbconvert吗?(我只是反过来使用它:jupyter -> python)

python converters jupyter-notebook

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

spring data jpa - 基于接口的投影中的自定义类型转换

我正在尝试实现基于接口的投影,但无法使其与我的自定义类型列一起使用。

下面是我正在尝试做的示例:

存储库:

@Query(value = "SELECT customType from TABLE", nativeQuery = true)
List<TestClass> getResults();
Run Code Online (Sandbox Code Playgroud)

界面投影:

public interface TestClass {
  @Convert(converter = MyCustomTypeConverter.class)
  MyCustomType getCustomType();
}
Run Code Online (Sandbox Code Playgroud)

转换器:

@Converter
public class MyCustomTypeConverter implements Converter<String, MyCustomType> {

      @Override
      public MyCustomType convert(String source) {
        // whatever
      }
}
Run Code Online (Sandbox Code Playgroud)

当我在存储库上调用 getResults() 时,我会按预期收到结果列表,但是当我尝试对其中一个结果调用 getCustomType() 时,出现异常:

java.lang.IllegalArgumentException: Projection type must be an interface!
at org.springframework.util.Assert.isTrue(Assert.java:118)
at org.springframework.data.projection.ProxyProjectionFactory.createProjection(ProxyProjectionFactory.java:100)
at org.springframework.data.projection.SpelAwareProxyProjectionFactory.createProjection(SpelAwareProxyProjectionFactory.java:45)
at org.springframework.data.projection.ProjectingMethodInterceptor.getProjection(ProjectingMethodInterceptor.java:131)
at org.springframework.data.projection.ProjectingMethodInterceptor.invoke(ProjectingMethodInterceptor.java:80)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186)
at org.springframework.data.projection.ProxyProjectionFactory$TargetAwareMethodInterceptor.invoke(ProxyProjectionFactory.java:245)
Run Code Online (Sandbox Code Playgroud)

我发现问题出在

org.springframework.data.projection.ProxyProjectionFactory
Run Code Online (Sandbox Code Playgroud)

它使用

org.springframework.core.convert.support.DefaultConversionService
Run Code Online (Sandbox Code Playgroud)

这显然没有注册我的自定义类型转换器。

如果我在 ConversionService 中的断点处停止并在运行时手动添加我的转换器,投影将正常工作。 …

java projection converters nativequery spring-data-jpa

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

Blazor 中的 InputNumber 绑定转换器

我需要使用一些转换器来修改提供给 InputNumber 组件的数值。有谁知道如何以与 WPF 值转换器相同的方式修改绑定过程中的值?例如,将绑定属性中的给定值除以 10(用户输入 10 => 属性设置为 1,但仍向用户显示为 10)?

如果我只想显示百分比(模型属性 0.57 => 显示值 57 %)怎么办?我可以使用某种格式化方式来实现此目的吗?

converters blazor

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

如何将 df.info() 转换为数据帧。df.info()

如何转换df.info()成data_frame。

我希望能够将此数据框与其他数据框合并。

df.info()
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 458 entries, 0 to 457
Data columns (total 9 columns):
Name        457 non-null object
Team        457 non-null object
Number      457 non-null float64
Position    457 non-null object
Age         457 non-null float64
Height      457 non-null object
Weight      457 non-null float64
College     373 non-null object
Salary      446 non-null float64
dtypes: float64(4), object(5)
memory usage: 32.3+ KB
Run Code Online (Sandbox Code Playgroud)

merge converters dataframe python-3.x pandas

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

WPF - 通用 IValueConverter?

我需要转换许多不同的对象,并且我想避免为每个对象编写转换器类。每个对象都继承自一个基类,我需要使用 Id 来获取描述(这是在我对 CacheManager 的调用中处理的)。

对于每个类(我有大约 30 个类),我编写了以下代码:

object IValueConverter.Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
    Dictionary<int, string> codes = CacheManager.CodeLookup<CourtEventCode>();
    int id = 0;
    string result = string.Empty;

    if (int.TryParse(value.ToString(), out id) && id > 0)
    {
        if (codes.ContainsKey(id))
        {
            result = codes[id];
        }
        else
        {
            result = "Unknown";
        }
    }

    return result;
}
Run Code Online (Sandbox Code Playgroud)

在上面的示例中,CourtEventCode代表这一类的转换器。有没有一种方法可以从 IValueConverter.Convert 的 targetType 输入派生该类,而不必基本上复制并粘贴该类两打?

预先感谢,
桑尼

.net c# generics wpf converters

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

什么时候默认转换器启动?

使用以下代码,虽然Text属性绑定到DateTime源属性,但我注意到WPF似乎自动将文本转换为DateTime,而不需要编写ValueConverter.有人可以说明这是如何完成的

<Window x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
        xmlns:WpfApplication1="clr-namespace:WpfApplication1"
        Title="MainWindow" Height="350" Width="525"
        >    
    <StackPanel>
        <DatePicker Height="25" Name="datePicker1" Width="213" Text="{Binding Path=DueDate,Mode=TwoWay,UpdateSourceTrigger=PropertyChanged}" />
    </StackPanel>
</Window>
Run Code Online (Sandbox Code Playgroud)
public class P
    {
        private DateTime? dueDate = DateTime.Now;
        public DateTime? DueDate
        {
            get { return dueDate; }
            set 
            { 
                dueDate = value;
            }
        }
    }

public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            P p = new P();
            this.DataContext = p;
        }
    }
Run Code Online (Sandbox Code Playgroud)

wpf converters

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

WPF C# 中的绑定可见性转换器

我有一个集合类型的依赖属性,当它的回调根据计数触发时,我需要设置屏幕上某些控件的可见性。

但控件始终处于折叠状态。根据代码,一个控件始终保持可见。

XAML 绑定是

   <TextBlock Text="106 search results for 'a'" Margin="5,0,100,0" Visibility="{Binding CountLabelVisibleReverse, Converter={StaticResource VisibilityConverter}}"/>
 <StackPanel Grid.Row="1" Orientation="Horizontal" Margin="0,0,90,0"  
                            Visibility="{Binding CountLabelVisible, Converter={StaticResource VisibilityConverter}}">
 <TextBlock Text="Sort By"  />
 <ComboBox Style="{StaticResource ComboBoxStyle1}" Width="100" x:Name="ComboBoxSorting" ItemsSource="{Binding SortBy}" />
   </StackPanel>
Run Code Online (Sandbox Code Playgroud)

我的两个属性是

    public bool CountLabelVisible { get; set; }

    public bool CountLabelVisibleReverse { get; set; }
Run Code Online (Sandbox Code Playgroud)

依赖属性回调

   private static void ItemsCollectionChanged(DependencyObject obj, DependencyPropertyChangedEventArgs eventArgs)
    {
        var listingUserControl = (obj as ListingUserControl);

        var itemsResult = (eventArgs.NewValue as List<ItemsResult>);
        if (listingUserControl != null && itemsResult != null) …
Run Code Online (Sandbox Code Playgroud)

c# wpf xaml binding converters

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